From b4b0f4388c0d75cb42c89bf32053d04faa0f7c31 Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Thu, 5 Sep 2019 13:27:50 -0700 Subject: [PATCH] ci: update material-unit-tests commit (#32485) Updates the SHA that will be tested against in the `material-unit-tests` job to the latest commit in the components repository. SHA 2817c9e2faa4140342336987a692d5dd30bf24c2 is needed in order to make the `material-unit-tests` job pass after the remove of the `protractor_web_test_suite` bazel rule from @angular/bazel. `protractor_web_test_suite` is now provided by the @bazel/protractor npm package. PR Close #32485 --- .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 5328dc5367b02f..3d103c64a8a036 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -190,7 +190,7 @@ var_14: ¬ify_dev_infra_on_fail # 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_15: &material_unit_tests_cache_key v4-angular-material-18b9ef3f5529f0fa8f034944681486447af7b879 +var_15: &material_unit_tests_cache_key v4-angular-material-2817c9e2faa4140342336987a692d5dd30bf24c2 var_16: &material_unit_tests_cache_key_short v4-angular-material version: 2 diff --git a/.circleci/env.sh b/.circleci/env.sh index 95811924158fef..562ddf37bf8059 100755 --- a/.circleci/env.sh +++ b/.circleci/env.sh @@ -84,7 +84,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 "18b9ef3f5529f0fa8f034944681486447af7b879" +setPublicVar MATERIAL_REPO_COMMIT "2817c9e2faa4140342336987a692d5dd30bf24c2" # Source `$BASH_ENV` to make the variables available immediately. source $BASH_ENV;