From 7b92e796bb3fa6ae570201bd717d6a6d121ea7fd Mon Sep 17 00:00:00 2001 From: Chang She <759245+changhiskhan@users.noreply.github.com> Date: Wed, 6 Dec 2023 14:20:46 -0800 Subject: [PATCH] chore: set error handling to immediate (#686) there's build failure for the rust artifact but the macos arm64 build for npm publish still passed. So we had a silent failure for 2 releases. By setting error to immediate this should cause fail immediately. --- ci/build_macos_artifacts.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/build_macos_artifacts.sh b/ci/build_macos_artifacts.sh index 15005767..ca5280aa 100644 --- a/ci/build_macos_artifacts.sh +++ b/ci/build_macos_artifacts.sh @@ -1,6 +1,7 @@ # Builds the macOS artifacts (node binaries). # Usage: ./ci/build_macos_artifacts.sh [target] # Targets supported: x86_64-apple-darwin aarch64-apple-darwin +set -e prebuild_rust() { # Building here for the sake of easier debugging.