Skip to content

Commit 6ef3af4

Browse files
jacobly0alexrp
authored andcommitted
ci: remove hardcoded paths in aarch64-macos scripts
1 parent f50b0d7 commit 6ef3af4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ci/aarch64-macos-debug.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export ZIG_LOCAL_CACHE_DIR="$PWD/zig-local-cache"
2727
mkdir build-debug
2828
cd build-debug
2929

30-
PATH="$HOME/local/bin:$PATH" cmake .. \
30+
cmake .. \
3131
-DCMAKE_INSTALL_PREFIX="stage3-debug" \
3232
-DCMAKE_PREFIX_PATH="$PREFIX" \
3333
-DCMAKE_BUILD_TYPE=Debug \
@@ -39,7 +39,7 @@ PATH="$HOME/local/bin:$PATH" cmake .. \
3939
-DZIG_NO_LIB=ON \
4040
-GNinja
4141

42-
$HOME/local/bin/ninja install
42+
ninja install
4343

4444
stage3-debug/bin/zig build test docs \
4545
--zig-lib-dir "$PWD/../lib" \

ci/aarch64-macos-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export ZIG_LOCAL_CACHE_DIR="$PWD/zig-local-cache"
2727
mkdir build-release
2828
cd build-release
2929

30-
PATH="$HOME/local/bin:$PATH" cmake .. \
30+
cmake .. \
3131
-DCMAKE_INSTALL_PREFIX="stage3-release" \
3232
-DCMAKE_PREFIX_PATH="$PREFIX" \
3333
-DCMAKE_BUILD_TYPE=Release \
@@ -39,7 +39,7 @@ PATH="$HOME/local/bin:$PATH" cmake .. \
3939
-DZIG_NO_LIB=ON \
4040
-GNinja
4141

42-
$HOME/local/bin/ninja install
42+
ninja install
4343

4444
stage3-release/bin/zig build test docs \
4545
--zig-lib-dir "$PWD/../lib" \

0 commit comments

Comments
 (0)