summaryrefslogtreecommitdiffstats
path: root/ci/before_deploy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/before_deploy.sh')
-rwxr-xr-xci/before_deploy.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh
index d352a88b..561cbb51 100755
--- a/ci/before_deploy.sh
+++ b/ci/before_deploy.sh
@@ -8,12 +8,13 @@ set -ex
# Generate artifacts for release
mk_artifacts() {
+ CARGO="$(builder)"
if is_arm; then
- cargo build --target "$TARGET" --release
+ "$CARGO" build --target "$TARGET" --release
else
# Technically, MUSL builds will force PCRE2 to get statically compiled,
# but we also want PCRE2 statically build for macOS binaries.
- PCRE2_SYS_STATIC=1 cargo build --target "$TARGET" --release --features 'pcre2'
+ PCRE2_SYS_STATIC=1 "$CARGO" build --target "$TARGET" --release --features 'pcre2'
fi
}