From 3e389d01ed13374aa3a362dfa505eb00718b318c Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 1 May 2021 00:38:54 +0200 Subject: [PATCH] CI: no need to try qemu and wasmtime on macOS builds --- ci/azure/macos_script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/azure/macos_script b/ci/azure/macos_script index c05a6871fb..4aa7629352 100755 --- a/ci/azure/macos_script +++ b/ci/azure/macos_script @@ -59,7 +59,7 @@ 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 + if ! release/bin/zig build $step 2>"$LOG" >&2; then cat "$LOG" >&2 exit 1 fi