authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2024-02-09 13:17:35+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2024-02-09 13:17:35+01:00
log83bbc39c1582077cb5385536a04b7bf8bbffbf26
tree4a6a629ffe42971e160d875783e8f991889489a1
parentb5d2be108243e7f2b6af0cb8085b382ed00e6036

ci: enable testing of non-llvm bootstrapping on x86_64-macos


1 files changed, 9 insertions(+), 0 deletions(-)

ci/x86_64-macos-release.sh+9
...@@ -25,6 +25,15 @@ cd $ZIGDIR...@@ -25,6 +25,15 @@ cd $ZIGDIR
25git fetch --unshallow || true25git fetch --unshallow || true
26git fetch --tags26git fetch --tags
2727
28# Test building from source without LLVM.
29git clean -fd
30rm -rf zig-out
31cc -o bootstrap bootstrap.c
32./bootstrap
33./zig2 build -Dno-lib
34# In order to run these behavior tests we need to move the `@cImport` ones to somewhere else.
35# ./zig-out/bin/zig test test/behavior.zig
36
28rm -rf build37rm -rf build
29mkdir build38mkdir build
30cd build39cd build