We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50394d4 commit 86292b2Copy full SHA for 86292b2
ci/zinc/linux_test_stage3_debug.sh
@@ -12,6 +12,12 @@ git config core.abbrev 9
12
13
echo "building stage3-debug with zig version $($OLD_ZIG version)"
14
15
+# Override the cache directories so that we don't clobber with the release
16
+# testing script which is running concurrently and in the same directory.
17
+# Normally we want processes to cooperate, but in this case we want them isolated.
18
+export ZIG_LOCAL_CACHE_DIR="$(pwd)/zig-cache-local-debug"
19
+export ZIG_GLOBAL_CACHE_DIR="$(pwd)/zig-cache-global-debug"
20
+
21
export CC="$OLD_ZIG cc -target $TARGET -mcpu=$MCPU"
22
export CXX="$OLD_ZIG c++ -target $TARGET -mcpu=$MCPU"
23
0 commit comments