zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 9a637f81e021cacd8e38be6793a86b01ef735704 (tree)
parent 3e389d01ed13374aa3a362dfa505eb00718b318c
Author: Frank Denis <github@pureftpd.org>
Date:   Sun,  2 May 2021 02:07:59 +0200

Restore the CI logging as before

Diffstat:
Mci/azure/linux_script | 10+---------
Mci/azure/macos_script | 10+---------
2 files changed, 2 insertions(+), 18 deletions(-)

diff --git a/ci/azure/linux_script b/ci/azure/linux_script @@ -65,17 +65,9 @@ make $JOBS install cmake .. -DZIG_EXECUTABLE="$(pwd)/release/bin/zig" make $JOBS install -set +x -LOG=$(mktemp) for step in test-toolchain test-std docs; do - echo "* Running step: [$step]" - if ! release/bin/zig build $step -Denable-qemu -Denable-wasmtime 2>"$LOG" >&2; then - cat "$LOG" >&2 - exit 1 - fi - echo " Done." + release/bin/zig build $step -Denable-qemu -Denable-wasmtime done -set -x # Look for HTML errors. tidy -qe ../zig-cache/langref.html diff --git a/ci/azure/macos_script b/ci/azure/macos_script @@ -55,17 +55,9 @@ make $JOBS install cmake .. -DZIG_EXECUTABLE="$(pwd)/release/bin/zig" -DZIG_TARGET_MCPU="x86_64_v2" make $JOBS install -set +x -LOG=$(mktemp) for step in test-toolchain test-std docs; do - echo "* Running step: [$step]" - if ! release/bin/zig build $step 2>"$LOG" >&2; then - cat "$LOG" >&2 - exit 1 - fi - echo " Done." + release/bin/zig build $step done -set -x if [ "${BUILD_REASON}" != "PullRequest" ]; then mv ../LICENSE release/