From 9a637f81e021cacd8e38be6793a86b01ef735704 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 2 May 2021 02:07:59 +0200 Subject: [PATCH] Restore the CI logging as before --- ci/azure/linux_script | 10 +--------- ci/azure/macos_script | 10 +--------- 2 files changed, 2 insertions(+), 18 deletions(-) diff --git a/ci/azure/linux_script b/ci/azure/linux_script index 2b0e9c46aa60abce5eb69d993694b78c35db9b59..912a2518bbaeca53eaced2d8144aed74156d3fbd 100755 --- 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 index 4aa762935242d04da9d977d053d5d1dace253c17..d6d32612cc50d8e6a50e4094501cccde16b811d9 100755 --- 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/ -- 2.54.0