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
2020git fetch --unshallow || true
2121git fetch --tags
2222
23export CC="$ZIG cc -target $TARGET -mcpu=$MCPU"
24export CXX="$ZIG c++ -target $TARGET -mcpu=$MCPU"
23#export CC="$ZIG cc -target $TARGET -mcpu=$MCPU"
24#export CXX="$ZIG c++ -target $TARGET -mcpu=$MCPU"
2525
2626rm -rf build-release
2727mkdir build-release
......@@ -33,22 +33,22 @@ cd build-release
3333export ZIG_GLOBAL_CACHE_DIR="$(pwd)/zig-global-cache"
3434export ZIG_LOCAL_CACHE_DIR="$(pwd)/zig-local-cache"
3535
36cmake .. \
37 -DCMAKE_INSTALL_PREFIX="stage3-release" \
38 -DCMAKE_PREFIX_PATH="$PREFIX" \
39 -DCMAKE_BUILD_TYPE=Release \
40 -DZIG_TARGET_TRIPLE="$TARGET" \
41 -DZIG_TARGET_MCPU="$MCPU" \
42 -DZIG_STATIC=ON \
43 -DZIG_NO_LIB=ON \
44 -GNinja
45
46# 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.
48unset CC
49unset CXX
50
51ninja install
36#cmake .. \
37# -DCMAKE_INSTALL_PREFIX="stage3-release" \
38# -DCMAKE_PREFIX_PATH="$PREFIX" \
39# -DCMAKE_BUILD_TYPE=Release \
40# -DZIG_TARGET_TRIPLE="$TARGET" \
41# -DZIG_TARGET_MCPU="$MCPU" \
42# -DZIG_STATIC=ON \
43# -DZIG_NO_LIB=ON \
44# -GNinja
45#
46## 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.
48#unset CC
49#unset CXX
50#
51#ninja install
5252
5353## TODO: move this to a build.zig step (check-fmt)
5454#echo "Looking for non-conforming code formatting..."
......@@ -74,8 +74,8 @@ ninja install
7474## TODO: move this to a build.zig flag (-Denable-tidy)
7575#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.
78stage3-release/bin/zig build update-zig1
77## Ensure that updating the wasm binary from this commit will result in a viable build.
78#stage3-release/bin/zig build update-zig1
7979
8080rm -rf ../build-new
8181mkdir ../build-new