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 2b0e9c46aa..912a2518bb 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 4aa7629352..d6d32612cc 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/