2021-11-08 09:08:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
# Requires cmake ninja-build
|
|
|
|
|
2022-08-26 02:12:35 +01:00
|
|
|
set -x
|
|
|
|
set -e
|
2021-11-08 09:08:29 +00:00
|
|
|
|
2022-08-26 02:12:35 +01:00
|
|
|
ARCH="$(uname -m)"
|
2022-11-22 21:13:58 +00:00
|
|
|
TARGET="$ARCH-linux-musl"
|
|
|
|
MCPU="baseline"
|
2023-08-25 07:13:49 +01:00
|
|
|
CACHE_BASENAME="zig+llvm+lld+clang-$TARGET-0.12.0-dev.203+d3bc1cfc4"
|
2022-11-22 21:13:58 +00:00
|
|
|
PREFIX="$HOME/deps/$CACHE_BASENAME"
|
|
|
|
ZIG="$PREFIX/bin/zig"
|
2022-11-22 03:15:22 +00:00
|
|
|
|
2024-02-23 09:30:34 +00:00
|
|
|
export PATH="$HOME/deps/wasmtime-v10.0.2-$ARCH-linux:$HOME/deps/qemu-linux-x86_64-8.2.1/bin:$PATH"
|
2022-11-22 03:15:22 +00:00
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
# Make the `zig version` number consistent.
|
|
|
|
# This will affect the cmake command below.
|
|
|
|
git fetch --unshallow || true
|
|
|
|
git fetch --tags
|
2022-11-22 03:15:22 +00:00
|
|
|
|
2023-11-09 21:30:18 +00:00
|
|
|
# Test building from source without LLVM.
|
|
|
|
git clean -fd
|
|
|
|
rm -rf zig-out
|
|
|
|
cc -o bootstrap bootstrap.c
|
2023-11-13 21:30:21 +00:00
|
|
|
./bootstrap
|
|
|
|
./zig2 build -Dno-lib
|
2024-02-20 09:15:10 +00:00
|
|
|
./zig-out/bin/zig test test/behavior.zig
|
2023-11-09 21:30:18 +00:00
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
export CC="$ZIG cc -target $TARGET -mcpu=$MCPU"
|
|
|
|
export CXX="$ZIG c++ -target $TARGET -mcpu=$MCPU"
|
2022-11-22 03:15:22 +00:00
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
rm -rf build-debug
|
|
|
|
mkdir build-debug
|
|
|
|
cd build-debug
|
2022-12-04 22:45:15 +00:00
|
|
|
|
|
|
|
# Override the cache directories because they won't actually help other CI runs
|
|
|
|
# which will be testing alternate versions of zig, and ultimately would just
|
|
|
|
# fill up space on the hard drive for no reason.
|
|
|
|
export ZIG_GLOBAL_CACHE_DIR="$(pwd)/zig-global-cache"
|
|
|
|
export ZIG_LOCAL_CACHE_DIR="$(pwd)/zig-local-cache"
|
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
cmake .. \
|
|
|
|
-DCMAKE_INSTALL_PREFIX="stage3-debug" \
|
|
|
|
-DCMAKE_PREFIX_PATH="$PREFIX" \
|
|
|
|
-DCMAKE_BUILD_TYPE=Debug \
|
|
|
|
-DZIG_TARGET_TRIPLE="$TARGET" \
|
|
|
|
-DZIG_TARGET_MCPU="$MCPU" \
|
|
|
|
-DZIG_STATIC=ON \
|
2023-07-22 04:29:42 +01:00
|
|
|
-DZIG_NO_LIB=ON \
|
2022-11-22 21:13:58 +00:00
|
|
|
-GNinja
|
2022-08-26 02:12:35 +01:00
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
# Now cmake will use zig as the C/C++ compiler. We reset the environment variables
|
|
|
|
# so that installation and testing do not get affected by them.
|
|
|
|
unset CC
|
|
|
|
unset CXX
|
2022-02-17 23:16:33 +00:00
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
ninja install
|
2022-02-17 23:16:33 +00:00
|
|
|
|
2023-09-12 22:19:16 +01:00
|
|
|
# TODO: move this to a build.zig step (check-fmt)
|
2022-07-14 00:47:55 +01:00
|
|
|
echo "Looking for non-conforming code formatting..."
|
2023-09-12 22:19:16 +01:00
|
|
|
stage3-debug/bin/zig fmt --check .. \
|
|
|
|
--exclude ../test/cases/ \
|
|
|
|
--exclude ../build-debug
|
2022-08-08 07:10:57 +01:00
|
|
|
|
2022-08-20 06:06:15 +01:00
|
|
|
# simultaneously test building self-hosted without LLVM and with 32-bit arm
|
2023-07-22 04:29:42 +01:00
|
|
|
stage3-debug/bin/zig build \
|
|
|
|
-Dtarget=arm-linux-musleabihf \
|
|
|
|
-Dno-lib
|
2022-08-20 06:06:15 +01:00
|
|
|
|
2022-11-30 00:17:25 +00:00
|
|
|
stage3-debug/bin/zig build test docs \
|
2023-04-17 18:38:27 +01:00
|
|
|
--maxrss 21000000000 \
|
2022-08-09 10:58:39 +01:00
|
|
|
-fqemu \
|
|
|
|
-fwasmtime \
|
|
|
|
-Dstatic-llvm \
|
|
|
|
-Dtarget=native-native-musl \
|
2022-11-22 21:13:58 +00:00
|
|
|
--search-prefix "$PREFIX" \
|
|
|
|
--zig-lib-dir "$(pwd)/../lib"
|
|
|
|
|
2022-11-30 00:17:25 +00:00
|
|
|
# Look for HTML errors.
|
2023-07-22 04:29:42 +01:00
|
|
|
# TODO: move this to a build.zig flag (-Denable-tidy)
|
2023-08-02 23:19:56 +01:00
|
|
|
tidy --drop-empty-elements no -qe "../zig-out/doc/langref.html"
|
2022-12-08 02:27:35 +00:00
|
|
|
|
|
|
|
# Ensure that updating the wasm binary from this commit will result in a viable build.
|
|
|
|
stage3-debug/bin/zig build update-zig1
|
|
|
|
|
|
|
|
rm -rf ../build-new
|
|
|
|
mkdir ../build-new
|
|
|
|
cd ../build-new
|
|
|
|
|
|
|
|
export ZIG_GLOBAL_CACHE_DIR="$(pwd)/zig-global-cache"
|
|
|
|
export ZIG_LOCAL_CACHE_DIR="$(pwd)/zig-local-cache"
|
|
|
|
export CC="$ZIG cc -target $TARGET -mcpu=$MCPU"
|
|
|
|
export CXX="$ZIG c++ -target $TARGET -mcpu=$MCPU"
|
|
|
|
|
|
|
|
cmake .. \
|
|
|
|
-DCMAKE_PREFIX_PATH="$PREFIX" \
|
|
|
|
-DCMAKE_BUILD_TYPE=Debug \
|
|
|
|
-DZIG_TARGET_TRIPLE="$TARGET" \
|
|
|
|
-DZIG_TARGET_MCPU="$MCPU" \
|
|
|
|
-DZIG_STATIC=ON \
|
2023-07-22 04:29:42 +01:00
|
|
|
-DZIG_NO_LIB=ON \
|
2022-12-08 02:27:35 +00:00
|
|
|
-GNinja
|
|
|
|
|
|
|
|
unset CC
|
|
|
|
unset CXX
|
|
|
|
|
|
|
|
ninja install
|
|
|
|
|
2024-02-20 09:15:10 +00:00
|
|
|
stage3/bin/zig test ../test/behavior.zig
|
2023-03-05 04:04:22 +00:00
|
|
|
stage3/bin/zig build -p stage4 \
|
|
|
|
-Dstatic-llvm \
|
|
|
|
-Dtarget=native-native-musl \
|
2023-07-22 04:29:42 +01:00
|
|
|
-Dno-lib \
|
2023-03-05 04:04:22 +00:00
|
|
|
--search-prefix "$PREFIX" \
|
|
|
|
--zig-lib-dir "$(pwd)/../lib"
|
2024-02-20 09:15:10 +00:00
|
|
|
stage4/bin/zig test ../test/behavior.zig
|