From 649d01e52a2f3c269e23227e56297be6e84408be Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Sat, 11 Jan 2020 12:26:37 +0100 Subject: [PATCH] ci: update material-unit-tests commit (#33717) Updates the commit SHA the `material-unit-tests` CircleCI job runs against. We need to include a commit that makes the node module installation more determinisitc (i.e. ensuring that `tsickle` is always hoisted at the node module root). https://github.com/angular/components/commit/31a50f7ad2947d9ceba99a64717ffa263a2a1d56 PR Close #33717 --- .circleci/config.yml | 2 +- .circleci/env.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0f0fda6aa4..9f784ddb5a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,7 +29,7 @@ var_4_win: &cache_key_win_fallback v5-angular-win-node-12.0- # Cache key for the Material unit tests job. **Note** when updating the SHA in the cache keys, # also update the SHA for the "MATERIAL_REPO_COMMIT" environment variable. -var_5: &material_unit_tests_cache_key v5-angular-material-c734deb14bb28579ba59e7e065a39e3c4ed54458 +var_5: &material_unit_tests_cache_key v5-angular-material-5df091688bab15d18519aa973fdc7fa329cf3534 var_6: &material_unit_tests_cache_key_fallback v5-angular-material- # Workspace initially persisted by the `setup` job, and then enhanced by `build-npm-packages` and diff --git a/.circleci/env.sh b/.circleci/env.sh index f9734fbfa5..5b63c78bc7 100755 --- a/.circleci/env.sh +++ b/.circleci/env.sh @@ -75,7 +75,7 @@ setPublicVar MATERIAL_REPO_TMP_DIR "/tmp/material2" setPublicVar MATERIAL_REPO_URL "https://github.com/angular/material2.git" setPublicVar MATERIAL_REPO_BRANCH "master" # **NOTE**: When updating the commit SHA, also update the cache key in the CircleCI "config.yml". -setPublicVar MATERIAL_REPO_COMMIT "c734deb14bb28579ba59e7e065a39e3c4ed54458" +setPublicVar MATERIAL_REPO_COMMIT "5df091688bab15d18519aa973fdc7fa329cf3534" # Source `$BASH_ENV` to make the variables available immediately. source $BASH_ENV;