| author | |
| committer | |
| log | 830831dcba50bfc8a0f685ce72f25d0208c9f33f |
| tree | 18658397ac6a1b1e9d5f4565c20a76224ab0633d |
| parent | e11901c1a1c5aa617e4251e559f97b87b6725453 |
| signature |
2 files changed, 136 insertions(+), 0 deletions(-)
ci/s390x-linux-debug.sh created+65| ... | @@ -0,0 +1,65 @@ | ||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | # Requires cmake ninja-build | ||
| 4 | |||
| 5 | set -x | ||
| 6 | set -e | ||
| 7 | |||
| 8 | TARGET="s390x-linux-musl" | ||
| 9 | MCPU="z15" | ||
| 10 | CACHE_BASENAME="zig+llvm+lld+clang-$TARGET-0.16.0-dev.1354+94e98bfe8" | ||
| 11 | PREFIX="$HOME/deps/$CACHE_BASENAME" | ||
| 12 | ZIG="$PREFIX/bin/zig" | ||
| 13 | |||
| 14 | # Override the cache directories because they won't actually help other CI runs | ||
| 15 | # which will be testing alternate versions of zig, and ultimately would just | ||
| 16 | # fill up space on the hard drive for no reason. | ||
| 17 | export ZIG_GLOBAL_CACHE_DIR="$PWD/zig-global-cache" | ||
| 18 | export ZIG_LOCAL_CACHE_DIR="$PWD/zig-local-cache" | ||
| 19 | |||
| 20 | mkdir build-debug | ||
| 21 | cd build-debug | ||
| 22 | |||
| 23 | export CC="$ZIG cc -target $TARGET -mcpu=$MCPU" | ||
| 24 | export CXX="$ZIG c++ -target $TARGET -mcpu=$MCPU" | ||
| 25 | |||
| 26 | cmake .. \ | ||
| 27 | -DCMAKE_INSTALL_PREFIX="stage3-debug" \ | ||
| 28 | -DCMAKE_PREFIX_PATH="$PREFIX" \ | ||
| 29 | -DCMAKE_BUILD_TYPE=Debug \ | ||
| 30 | -DZIG_TARGET_TRIPLE="$TARGET" \ | ||
| 31 | -DZIG_TARGET_MCPU="$MCPU" \ | ||
| 32 | -DZIG_STATIC=ON \ | ||
| 33 | -DZIG_NO_LIB=ON \ | ||
| 34 | -GNinja \ | ||
| 35 | -DCMAKE_C_LINKER_DEPFILE_SUPPORTED=FALSE \ | ||
| 36 | -DCMAKE_CXX_LINKER_DEPFILE_SUPPORTED=FALSE | ||
| 37 | # https://github.com/ziglang/zig/issues/22213 | ||
| 38 | |||
| 39 | # Now cmake will use zig as the C/C++ compiler. We reset the environment variables | ||
| 40 | # so that installation and testing do not get affected by them. | ||
| 41 | unset CC | ||
| 42 | unset CXX | ||
| 43 | |||
| 44 | ninja install | ||
| 45 | |||
| 46 | # No -fqemu and -fwasmtime here as they're covered by the x86_64-linux scripts. | ||
| 47 | stage3-debug/bin/zig build test docs \ | ||
| 48 | --maxrss 30064771072 \ | ||
| 49 | -Dstatic-llvm \ | ||
| 50 | -Dskip-non-native \ | ||
| 51 | -Dtarget=native-native-musl \ | ||
| 52 | --search-prefix "$PREFIX" \ | ||
| 53 | --zig-lib-dir "$PWD/../lib" \ | ||
| 54 | --test-timeout 4m | ||
| 55 | |||
| 56 | stage3-debug/bin/zig build \ | ||
| 57 | --prefix stage4-debug \ | ||
| 58 | -Denable-llvm \ | ||
| 59 | -Dno-lib \ | ||
| 60 | -Dtarget=$TARGET \ | ||
| 61 | -Dcpu=$MCPU \ | ||
| 62 | -Duse-zig-libcxx \ | ||
| 63 | -Dversion-string="$(stage3-debug/bin/zig version)" | ||
| 64 | |||
| 65 | stage4-debug/bin/zig test ../test/behavior.zig | ||
ci/s390x-linux-release.sh created+71| ... | @@ -0,0 +1,71 @@ | ||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | # Requires cmake ninja-build | ||
| 4 | |||
| 5 | set -x | ||
| 6 | set -e | ||
| 7 | |||
| 8 | TARGET="s390x-linux-musl" | ||
| 9 | MCPU="z15" | ||
| 10 | CACHE_BASENAME="zig+llvm+lld+clang-$TARGET-0.16.0-dev.1354+94e98bfe8" | ||
| 11 | PREFIX="$HOME/deps/$CACHE_BASENAME" | ||
| 12 | ZIG="$PREFIX/bin/zig" | ||
| 13 | |||
| 14 | # Override the cache directories because they won't actually help other CI runs | ||
| 15 | # which will be testing alternate versions of zig, and ultimately would just | ||
| 16 | # fill up space on the hard drive for no reason. | ||
| 17 | export ZIG_GLOBAL_CACHE_DIR="$PWD/zig-global-cache" | ||
| 18 | export ZIG_LOCAL_CACHE_DIR="$PWD/zig-local-cache" | ||
| 19 | |||
| 20 | mkdir build-release | ||
| 21 | cd build-release | ||
| 22 | |||
| 23 | export CC="$ZIG cc -target $TARGET -mcpu=$MCPU" | ||
| 24 | export CXX="$ZIG c++ -target $TARGET -mcpu=$MCPU" | ||
| 25 | |||
| 26 | cmake .. \ | ||
| 27 | -DCMAKE_INSTALL_PREFIX="stage3-release" \ | ||
| 28 | -DCMAKE_PREFIX_PATH="$PREFIX" \ | ||
| 29 | -DCMAKE_BUILD_TYPE=Release \ | ||
| 30 | -DZIG_TARGET_TRIPLE="$TARGET" \ | ||
| 31 | -DZIG_TARGET_MCPU="$MCPU" \ | ||
| 32 | -DZIG_STATIC=ON \ | ||
| 33 | -DZIG_NO_LIB=ON \ | ||
| 34 | -GNinja \ | ||
| 35 | -DCMAKE_C_LINKER_DEPFILE_SUPPORTED=FALSE \ | ||
| 36 | -DCMAKE_CXX_LINKER_DEPFILE_SUPPORTED=FALSE | ||
| 37 | # https://github.com/ziglang/zig/issues/22213 | ||
| 38 | |||
| 39 | # Now cmake will use zig as the C/C++ compiler. We reset the environment variables | ||
| 40 | # so that installation and testing do not get affected by them. | ||
| 41 | unset CC | ||
| 42 | unset CXX | ||
| 43 | |||
| 44 | ninja install | ||
| 45 | |||
| 46 | # No -fqemu and -fwasmtime here as they're covered by the x86_64-linux scripts. | ||
| 47 | stage3-release/bin/zig build test docs \ | ||
| 48 | --maxrss 30064771072 \ | ||
| 49 | -Dstatic-llvm \ | ||
| 50 | -Dskip-non-native \ | ||
| 51 | -Dtarget=native-native-musl \ | ||
| 52 | --search-prefix "$PREFIX" \ | ||
| 53 | --zig-lib-dir "$PWD/../lib" \ | ||
| 54 | --test-timeout 4m | ||
| 55 | |||
| 56 | # Ensure that stage3 and stage4 are byte-for-byte identical. | ||
| 57 | stage3-release/bin/zig build \ | ||
| 58 | --prefix stage4-release \ | ||
| 59 | -Denable-llvm \ | ||
| 60 | -Dno-lib \ | ||
| 61 | -Doptimize=ReleaseFast \ | ||
| 62 | -Dstrip \ | ||
| 63 | -Dtarget=$TARGET \ | ||
| 64 | -Dcpu=$MCPU \ | ||
| 65 | -Duse-zig-libcxx \ | ||
| 66 | -Dversion-string="$(stage3-release/bin/zig version)" | ||
| 67 | |||
| 68 | # diff returns an error code if the files differ. | ||
| 69 | echo "If the following command fails, it means nondeterminism has been" | ||
| 70 | echo "introduced, making stage3 and stage4 no longer byte-for-byte identical." | ||
| 71 | diff stage3-release/bin/zig stage4-release/bin/zig | ||