Skip to content

Commit

Permalink
ci: Remove -fwasmtime from aarch64-linux scripts.
Browse files Browse the repository at this point in the history
This is covered by the x86_64-linux scripts. Also remove the TODO comments
related to -fqemu for the same reason.
  • Loading branch information
alexrp committed Oct 17, 2024
1 parent 8504e1f commit ba4a555
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions ci/aarch64-linux-debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ CACHE_BASENAME="zig+llvm+lld+clang-$TARGET-0.14.0-dev.1622+2ac543388"
PREFIX="$HOME/deps/$CACHE_BASENAME"
ZIG="$PREFIX/bin/zig"

export PATH="$HOME/deps/wasmtime-v10.0.2-$ARCH-linux:$HOME/local/bin:$PATH"

# Make the `zig version` number consistent.
# This will affect the cmake command below.
git fetch --unshallow || true
Expand Down Expand Up @@ -54,10 +52,9 @@ stage3-debug/bin/zig build \
-Dtarget=arm-linux-musleabihf \
-Dno-lib

# TODO: add -fqemu back to this line
# No -fqemu and -fwasmtime here as they're covered by the x86_64-linux scripts.
stage3-debug/bin/zig build test docs \
--maxrss 24696061952 \
-fwasmtime \
-Dstatic-llvm \
-Dtarget=native-native-musl \
--search-prefix "$PREFIX" \
Expand Down
5 changes: 1 addition & 4 deletions ci/aarch64-linux-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ CACHE_BASENAME="zig+llvm+lld+clang-$TARGET-0.14.0-dev.1622+2ac543388"
PREFIX="$HOME/deps/$CACHE_BASENAME"
ZIG="$PREFIX/bin/zig"

export PATH="$HOME/deps/wasmtime-v10.0.2-$ARCH-linux:$HOME/local/bin:$PATH"

# Make the `zig version` number consistent.
# This will affect the cmake command below.
git fetch --unshallow || true
Expand Down Expand Up @@ -54,10 +52,9 @@ stage3-release/bin/zig build \
-Dtarget=arm-linux-musleabihf \
-Dno-lib

# TODO: add -fqemu back to this line
# No -fqemu and -fwasmtime here as they're covered by the x86_64-linux scripts.
stage3-release/bin/zig build test docs \
--maxrss 24696061952 \
-fwasmtime \
-Dstatic-llvm \
-Dtarget=native-native-musl \
--search-prefix "$PREFIX" \
Expand Down

0 comments on commit ba4a555

Please sign in to comment.