From d0a04bf30980a60629c22b332de29040cea8e703 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Mon, 16 Dec 2019 16:50:20 +0100 Subject: [PATCH] ci: fix saucelabs_view_engine master-only failing (#34429) Currently the `saucelabs_view_engine` job fails because the Saucelabs Bazel run script thinks that `--config=saucelabs` is a flag targeting the actual script. This is not the case and the flag should be actually part of the bazel command. PR Close #34429 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6b0f0557f0..529a09ca13 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -355,7 +355,7 @@ jobs: --tunnel-id angular-${CIRCLE_BUILD_NUM}-${CIRCLE_NODE_INDEX} \ --username $SAUCE_USERNAME \ --key $(echo $SAUCE_ACCESS_KEY | rev) \ - yarn bazel test //:saucelabs_unit_tests_poc --config=saucelabs + -- yarn bazel test //:saucelabs_unit_tests_poc --config=saucelabs no_output_timeout: 20m - notify_webhook_on_fail: webhook_url_env_var: SLACK_DEV_INFRA_CI_FAILURES_WEBHOOK_URL