From a97a0810eae4428dd55dc1fa1b94ee1f9c18715b Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Mon, 6 Jun 2022 09:57:35 -0400 Subject: [PATCH] DevTools e2e workflow: Download build artifacts (#24676) When running the hourly DevTools testing workflow, we don't need to build React from scratch each time; we can download its build artifacts, like we do for sizebot and the release workflow. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8057e3e312..199f834d20 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -555,12 +555,12 @@ workflows: - main jobs: - setup - - yarn_build_combined: + - get_base_build: requires: - setup - build_devtools_and_process_artifacts: requires: - - yarn_build_combined + - get_base_build - run_devtools_tests_for_versions: requires: - build_devtools_and_process_artifacts