aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorRobin Voetter <robin@voetter.nl>2021-10-17 22:46:36 +0200
committerRobin Voetter <robin@voetter.nl>2021-10-17 22:46:36 +0200
commit15a0b30d8e905a7b46fa97175d9bdba2bd5a8403 (patch)
tree032158073e5a3163c851d5a376e98abe9d42bea2 /ci
parentd004ef2e5d315e102e5be93ba68443ea0877492c (diff)
downloadzig-15a0b30d8e905a7b46fa97175d9bdba2bd5a8403.tar.gz
zig-15a0b30d8e905a7b46fa97175d9bdba2bd5a8403.zip
ci: disable macos stage 2 tests
Diffstat (limited to 'ci')
-rwxr-xr-xci/azure/macos_arm64_script3
-rwxr-xr-xci/azure/macos_script3
2 files changed, 4 insertions, 2 deletions
diff --git a/ci/azure/macos_arm64_script b/ci/azure/macos_arm64_script
index 138e365404..fc9fc2f954 100755
--- a/ci/azure/macos_arm64_script
+++ b/ci/azure/macos_arm64_script
@@ -53,7 +53,8 @@ cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DZIG_TARGET_TRIPLE="$HOST_TARGET" \
-DZIG_TARGET_MCPU="$HOST_MCPU" \
- -DZIG_STATIC=ON
+ -DZIG_STATIC=ON \
+ -DZIG_OMIT_STAGE2=ON
unset CC
unset CXX
diff --git a/ci/azure/macos_script b/ci/azure/macos_script
index ec384768d6..13e064f0e6 100755
--- a/ci/azure/macos_script
+++ b/ci/azure/macos_script
@@ -39,7 +39,8 @@ cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DZIG_TARGET_TRIPLE="$TARGET" \
-DZIG_TARGET_MCPU="$MCPU" \
- -DZIG_STATIC=ON
+ -DZIG_STATIC=ON \
+ -DZIG_OMIT_STAGE2=ON
# Now cmake will use zig as the C/C++ compiler. We reset the environment variables
# so that installation and testing do not get affected by them.