From 8ab70f80cb8943dde41a5e4a8ca73631d44643a2 Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Wed, 17 Jul 2024 21:49:53 -0400 Subject: [PATCH] ci: update aarch64-macos for a persistent work dir --- ci/aarch64-macos-debug.sh | 5 +++-- ci/aarch64-macos-release.sh | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ci/aarch64-macos-debug.sh b/ci/aarch64-macos-debug.sh index 59dfb66cfb..9283321c1f 100755 --- a/ci/aarch64-macos-debug.sh +++ b/ci/aarch64-macos-debug.sh @@ -26,8 +26,9 @@ cd $ZIGDIR git fetch --unshallow || true git fetch --tags -mkdir build -cd build +rm -rf build-debug +mkdir build-debug +cd build-debug # Override the cache directories because they won't actually help other CI runs # which will be testing alternate versions of zig, and ultimately would just diff --git a/ci/aarch64-macos-release.sh b/ci/aarch64-macos-release.sh index f6fd7334c1..396aa1d464 100755 --- a/ci/aarch64-macos-release.sh +++ b/ci/aarch64-macos-release.sh @@ -26,8 +26,9 @@ cd $ZIGDIR git fetch --unshallow || true git fetch --tags -mkdir build -cd build +rm -rf build-release +mkdir build-release +cd build-release # Override the cache directories because they won't actually help other CI runs # which will be testing alternate versions of zig, and ultimately would just