From 150b210e1491ec89c2d025f7eaa21fcb1e4c1ca8 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Fri, 8 Nov 2019 09:45:15 +0100 Subject: [PATCH] build: switch mdc snapshot test to run against master branch We currently run the MDC snapshot tests against their `develop` branch. This breaks at the moment since MDC deleted the branch in order to release a new major version. It's unclear what Git process they use, but considering they use Gitflow, then the `develop` branch should have not been deleted. This would be ideal for us.. because then we can just _always_ run against `develop`. For now though, since the branch does not exist anymore, we should switch to master so that the CI job can be green. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4419462b257a..b505f6db3176 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -436,7 +436,7 @@ jobs: environment: GCP_DECRYPT_TOKEN: *gcp_decrypt_token MDC_REPO_URL: "https://github.com/material-components/material-components-web.git" - MDC_REPO_BRANCH: "develop" + MDC_REPO_BRANCH: "master" MDC_REPO_TMP_DIR: "/tmp/material-components-web" steps: - *checkout_code