authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-14 18:46:54-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-14 18:46:54-07:00
log7a375d6d682855bd639263e17a2575052ab90fdc
treedbda76b39b66a59f4ffee5383ce2f3adffa3f3a3
parent36e2bc8075ff0a78801e18053804318f9556a472

CI: temporarily comment out more stuff


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

ci/aarch64-linux-release.sh+20-20
...@@ -20,8 +20,8 @@ git config core.abbrev 9...@@ -20,8 +20,8 @@ git config core.abbrev 9
20git fetch --unshallow || true20git fetch --unshallow || true
21git fetch --tags21git fetch --tags
2222
23export CC="$ZIG cc -target $TARGET -mcpu=$MCPU"23#export CC="$ZIG cc -target $TARGET -mcpu=$MCPU"
24export CXX="$ZIG c++ -target $TARGET -mcpu=$MCPU"24#export CXX="$ZIG c++ -target $TARGET -mcpu=$MCPU"
2525
26rm -rf build-release26rm -rf build-release
27mkdir build-release27mkdir build-release
...@@ -33,22 +33,22 @@ cd build-release...@@ -33,22 +33,22 @@ cd build-release
33export ZIG_GLOBAL_CACHE_DIR="$(pwd)/zig-global-cache"33export ZIG_GLOBAL_CACHE_DIR="$(pwd)/zig-global-cache"
34export ZIG_LOCAL_CACHE_DIR="$(pwd)/zig-local-cache"34export ZIG_LOCAL_CACHE_DIR="$(pwd)/zig-local-cache"
3535
36cmake .. \36#cmake .. \
37 -DCMAKE_INSTALL_PREFIX="stage3-release" \37# -DCMAKE_INSTALL_PREFIX="stage3-release" \
38 -DCMAKE_PREFIX_PATH="$PREFIX" \38# -DCMAKE_PREFIX_PATH="$PREFIX" \
39 -DCMAKE_BUILD_TYPE=Release \39# -DCMAKE_BUILD_TYPE=Release \
40 -DZIG_TARGET_TRIPLE="$TARGET" \40# -DZIG_TARGET_TRIPLE="$TARGET" \
41 -DZIG_TARGET_MCPU="$MCPU" \41# -DZIG_TARGET_MCPU="$MCPU" \
42 -DZIG_STATIC=ON \42# -DZIG_STATIC=ON \
43 -DZIG_NO_LIB=ON \43# -DZIG_NO_LIB=ON \
44 -GNinja44# -GNinja
4545#
46# Now cmake will use zig as the C/C++ compiler. We reset the environment variables46## Now cmake will use zig as the C/C++ compiler. We reset the environment variables
47# so that installation and testing do not get affected by them.47## so that installation and testing do not get affected by them.
48unset CC48#unset CC
49unset CXX49#unset CXX
5050#
51ninja install51#ninja install
5252
53## TODO: move this to a build.zig step (check-fmt)53## TODO: move this to a build.zig step (check-fmt)
54#echo "Looking for non-conforming code formatting..."54#echo "Looking for non-conforming code formatting..."
...@@ -74,8 +74,8 @@ ninja install...@@ -74,8 +74,8 @@ ninja install
74## TODO: move this to a build.zig flag (-Denable-tidy)74## TODO: move this to a build.zig flag (-Denable-tidy)
75#tidy --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-zig178#stage3-release/bin/zig build update-zig1
7979
80rm -rf ../build-new80rm -rf ../build-new
81mkdir ../build-new81mkdir ../build-new