From 8b9d0092cb5a36847877df987f3585ed84b6e0cd Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Sat, 14 Aug 2021 15:44:43 -0700 Subject: [PATCH] build: manually pull 64bit dugite for 32bit tests (#30531) --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 98ee3ec2da04b..4730053f60a6c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1209,6 +1209,9 @@ steps-tests: &steps-tests (cd electron && node script/yarn test --runners=main --trace-uncaught --enable-logging) (cd electron && node script/yarn test --runners=remote --trace-uncaught --enable-logging) else + if [ "$TARGET_ARCH" == "ia32" ]; then + npm_config_arch=x64 node electron/node_modules/dugite/script/download-git.js + fi (cd electron && node script/yarn test --runners=main --trace-uncaught --enable-logging --files $(circleci tests glob spec-main/*-spec.ts | circleci tests split --split-by=timings)) (cd electron && node script/yarn test --runners=remote --trace-uncaught --enable-logging --files $(circleci tests glob spec/*-spec.js | circleci tests split --split-by=timings)) fi