From 652dcf6550f3586377e910cf41b4846eff374210 Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Mon, 6 Jun 2022 11:33:22 -0400 Subject: [PATCH] Fix CI: Persist build artifacts to workspace The download_build job needs to persist its artifacts to the workspace so downstream jobs can access them. Persist the same directories as the normal build job. --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index eb724fb680..123962b045 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -138,6 +138,10 @@ jobs: git fetch origin main cd ./scripts/release && yarn && cd ../../ scripts/release/download-experimental-build.js --commit=<< parameters.revision >> --allowBrokenCI + - persist_to_workspace: + root: . + paths: + - build download_base_build_for_sizebot: docker: *docker