From e879d0256f3a042fcbe54c55892e77b220555aca Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Thu, 17 Jan 2019 22:35:36 +0100 Subject: [PATCH] build: run e2e tests with bazel rbe * Similar to other Bazel jobs, we should enable remote execution for the e2e tests. These currently build Angular Material in order to serve the e2e-app, so this could slow-down CI. Ideally remote caching would be also accepted, but this will be discussed soon. --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 067fb8baefc9..16f3ea163015 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -152,9 +152,13 @@ jobs: e2e_tests: <<: *job_defaults resource_class: xlarge + environment: + GCP_DECRYPT_TOKEN: *gcp_decrypt_token steps: - *checkout_code - *restore_cache + - *copy_bazel_config + - *setup_bazel_remote_execution - run: bazel test e2e/... @@ -305,6 +309,7 @@ jobs: - *checkout_code - *restore_cache - *attach_release_output + - *copy_bazel_config - *setup_bazel_remote_execution # CircleCI has a config setting to enforce SSH for all github connections.