CI: fix wrong directory paths

This commit is contained in:
Andrew Kelley 2022-11-22 01:20:22 -08:00
parent 9dd1899e43
commit e1da555148
2 changed files with 4 additions and 4 deletions

View File

@ -30,6 +30,7 @@ cd "$ZIGDIR"
echo "building stage3-debug with zig version $($OLD_ZIG version)"
"$OLD_ZIG" build \
--prefix stage3
--search-prefix "$DEPS_LOCAL" \
--zig-lib-dir lib \
-Denable-stage1 \
@ -39,14 +40,14 @@ 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 . \
stage3/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
stage3/bin/zig build -Dtarget=arm-linux-musleabihf
zig-out/bin/zig build test docs \
stage3/bin/zig build test docs \
-fqemu \
-fwasmtime \
-Dstatic-llvm \

View File

@ -60,7 +60,6 @@ make -j2 install
"stage3/bin/zig" build \
--prefix stage4 \
-Dconfig_h="build/config.h" \
-Denable-llvm \
-Denable-stage1 \
-Dno-lib \