Skip to content

Commit 936b44e

Browse files
committed
CI: fix wrong directory paths
1 parent ab68025 commit 936b44e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ci/linux/build-x86_64-debug.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ cd "$ZIGDIR"
3030
echo "building stage3-debug with zig version $($OLD_ZIG version)"
3131

3232
"$OLD_ZIG" build \
33+
--prefix stage3
3334
--search-prefix "$DEPS_LOCAL" \
3435
--zig-lib-dir lib \
3536
-Denable-stage1 \
@@ -39,14 +40,14 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)"
3940
-Dtarget="$TARGET"
4041

4142
echo "Looking for non-conforming code formatting..."
42-
zig-out/bin/zig fmt --check . \
43+
stage3/bin/zig fmt --check . \
4344
--exclude test/cases/ \
4445
--exclude build
4546

4647
# simultaneously test building self-hosted without LLVM and with 32-bit arm
47-
zig-out/bin/zig build -Dtarget=arm-linux-musleabihf
48+
stage3/bin/zig build -Dtarget=arm-linux-musleabihf
4849

49-
zig-out/bin/zig build test docs \
50+
stage3/bin/zig build test docs \
5051
-fqemu \
5152
-fwasmtime \
5253
-Dstatic-llvm \

ci/linux/build-x86_64-release.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ make -j2 install
6060

6161
"stage3/bin/zig" build \
6262
--prefix stage4 \
63-
-Dconfig_h="build/config.h" \
6463
-Denable-llvm \
6564
-Denable-stage1 \
6665
-Dno-lib \

0 commit comments

Comments
 (0)