| ... | ... | @@ -31,7 +31,7 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)" |
| 31 | 31 | |
| 32 | 32 | "$OLD_ZIG" build \ |
| 33 | 33 | --search-prefix "$DEPS_LOCAL" \ |
| 34 | | --zig-lib-dir "$(pwd)/../lib" \ |
| 34 | --zig-lib-dir lib \ |
| 35 | 35 | -Denable-stage1 \ |
| 36 | 36 | -Dstatic-llvm \ |
| 37 | 37 | -Drelease \ |
| ... | ... | @@ -39,9 +39,9 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)" |
| 39 | 39 | -Dtarget="$TARGET" |
| 40 | 40 | |
| 41 | 41 | echo "Looking for non-conforming code formatting..." |
| 42 | | zig-out/bin/zig fmt --check .. \ |
| 43 | | --exclude ../test/cases/ \ |
| 44 | | --exclude ../build |
| 42 | zig-out/bin/zig fmt --check . \ |
| 43 | --exclude test/cases/ \ |
| 44 | --exclude build |
| 45 | 45 | |
| 46 | 46 | # simultaneously test building self-hosted without LLVM and with 32-bit arm |
| 47 | 47 | zig-out/bin/zig build -Dtarget=arm-linux-musleabihf |
| ... | ... | @@ -52,4 +52,4 @@ zig-out/bin/zig build test docs \ |
| 52 | 52 | -Dstatic-llvm \ |
| 53 | 53 | -Dtarget=native-native-musl \ |
| 54 | 54 | --search-prefix "$DEPS_LOCAL" \ |
| 55 | | --zig-lib-dir "$(pwd)/../lib" |
| 55 | --zig-lib-dir lib |