authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-14 18:16:58-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-14 18:16:58-07:00
logca71aeb569f4c6558da88ac1dad955f74282aa46
tree6b394ea155e120d3d0985af5f47173ecd4d56f89
parent27edf60651496408a92a37c7b9766881ed54758d

CI: disable most stuff temporarily for testing


1 files changed, 31 insertions(+), 31 deletions(-)

ci/aarch64-linux-release.sh+31-31
...@@ -50,29 +50,29 @@ unset CXX...@@ -50,29 +50,29 @@ unset CXX
5050
51ninja install51ninja install
5252
53# TODO: move this to a build.zig step (check-fmt)53## TODO: move this to a build.zig step (check-fmt)
54echo "Looking for non-conforming code formatting..."54#echo "Looking for non-conforming code formatting..."
55stage3-release/bin/zig fmt --check .. \55#stage3-release/bin/zig fmt --check .. \
56 --exclude ../test/cases/ \56# --exclude ../test/cases/ \
57 --exclude ../build-release57# --exclude ../build-release
5858#
59# simultaneously test building self-hosted without LLVM and with 32-bit arm59## simultaneously test building self-hosted without LLVM and with 32-bit arm
60stage3-release/bin/zig build \60#stage3-release/bin/zig build \
61 -Dtarget=arm-linux-musleabihf \61# -Dtarget=arm-linux-musleabihf \
62 -Dno-lib62# -Dno-lib
6363#
64# TODO: add -fqemu back to this line64## TODO: add -fqemu back to this line
65stage3-release/bin/zig build test docs \65#stage3-release/bin/zig build test docs \
66 --maxrss 24696061952 \66# --maxrss 24696061952 \
67 -fwasmtime \67# -fwasmtime \
68 -Dstatic-llvm \68# -Dstatic-llvm \
69 -Dtarget=native-native-musl \69# -Dtarget=native-native-musl \
70 --search-prefix "$PREFIX" \70# --search-prefix "$PREFIX" \
71 --zig-lib-dir "$(pwd)/../lib"71# --zig-lib-dir "$(pwd)/../lib"
7272#
73# Look for HTML errors.73## Look for HTML errors.
74# TODO: move this to a build.zig flag (-Denable-tidy)74## TODO: move this to a build.zig flag (-Denable-tidy)
75tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"75#tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
7676
77# Ensure that updating the wasm binary from this commit will result in a viable build.77# Ensure that updating the wasm binary from this commit will result in a viable build.
78stage3-release/bin/zig build update-zig178stage3-release/bin/zig build update-zig1
...@@ -98,14 +98,14 @@ unset CXX...@@ -98,14 +98,14 @@ unset CXX
9898
99ninja install99ninja install
100100
101stage3/bin/zig test ../test/behavior.zig -I../test101#stage3/bin/zig test ../test/behavior.zig -I../test
102stage3/bin/zig build -p stage4 \102#stage3/bin/zig build -p stage4 \
103 -Dstatic-llvm \103# -Dstatic-llvm \
104 -Dtarget=native-native-musl \104# -Dtarget=native-native-musl \
105 -Dno-lib \105# -Dno-lib \
106 --search-prefix "$PREFIX" \106# --search-prefix "$PREFIX" \
107 --zig-lib-dir "$(pwd)/../lib"107# --zig-lib-dir "$(pwd)/../lib"
108stage4/bin/zig test ../test/behavior.zig -I../test108#stage4/bin/zig test ../test/behavior.zig -I../test
109109
110# After all correctness checking, compare performance against the merge-base.110# After all correctness checking, compare performance against the merge-base.
111cd ..111cd ..