authorgravatar for robin@voetter.nlRobin Voetter <robin@voetter.nl> 2021-10-17 22:46:36+02:00
committergravatar for robin@voetter.nlRobin Voetter <robin@voetter.nl> 2021-10-17 22:46:36+02:00
log15a0b30d8e905a7b46fa97175d9bdba2bd5a8403
tree032158073e5a3163c851d5a376e98abe9d42bea2
parentd004ef2e5d315e102e5be93ba68443ea0877492c

ci: disable macos stage 2 tests


2 files changed, 4 insertions(+), 2 deletions(-)

ci/azure/macos_arm64_script+2-1
......@@ -53,7 +53,8 @@ cmake .. \
5353 -DCMAKE_BUILD_TYPE=Release \
5454 -DZIG_TARGET_TRIPLE="$HOST_TARGET" \
5555 -DZIG_TARGET_MCPU="$HOST_MCPU" \
56 -DZIG_STATIC=ON
56 -DZIG_STATIC=ON \
57 -DZIG_OMIT_STAGE2=ON
5758
5859unset CC
5960unset CXX
ci/azure/macos_script+2-1
......@@ -39,7 +39,8 @@ cmake .. \
3939 -DCMAKE_BUILD_TYPE=Release \
4040 -DZIG_TARGET_TRIPLE="$TARGET" \
4141 -DZIG_TARGET_MCPU="$MCPU" \
42 -DZIG_STATIC=ON
42 -DZIG_STATIC=ON \
43 -DZIG_OMIT_STAGE2=ON
4344
4445# Now cmake will use zig as the C/C++ compiler. We reset the environment variables
4546# so that installation and testing do not get affected by them.