mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
CI: fix wrong lib dir path
This commit is contained in:
parent
5f23b65901
commit
9dd1899e43
1 changed files with 5 additions and 5 deletions
|
|
@ -31,7 +31,7 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)"
|
|||
|
||||
"$OLD_ZIG" build \
|
||||
--search-prefix "$DEPS_LOCAL" \
|
||||
--zig-lib-dir "$(pwd)/../lib" \
|
||||
--zig-lib-dir lib \
|
||||
-Denable-stage1 \
|
||||
-Dstatic-llvm \
|
||||
-Drelease \
|
||||
|
|
@ -39,9 +39,9 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)"
|
|||
-Dtarget="$TARGET"
|
||||
|
||||
echo "Looking for non-conforming code formatting..."
|
||||
zig-out/bin/zig fmt --check .. \
|
||||
--exclude ../test/cases/ \
|
||||
--exclude ../build
|
||||
zig-out/bin/zig fmt --check . \
|
||||
--exclude test/cases/ \
|
||||
--exclude build
|
||||
|
||||
# simultaneously test building self-hosted without LLVM and with 32-bit arm
|
||||
zig-out/bin/zig build -Dtarget=arm-linux-musleabihf
|
||||
|
|
@ -52,4 +52,4 @@ zig-out/bin/zig build test docs \
|
|||
-Dstatic-llvm \
|
||||
-Dtarget=native-native-musl \
|
||||
--search-prefix "$DEPS_LOCAL" \
|
||||
--zig-lib-dir "$(pwd)/../lib"
|
||||
--zig-lib-dir lib
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue