From 783c86aa7885aa9fd2c3083bc2de046e6791fc0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 29 Nov 2024 17:00:41 +0100 Subject: [PATCH] ci: Build the Mac framework in release mode The dev profile fails with a linker issue about not finding the __chkstk_darwin symbol. --- .github/workflows/bindings_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bindings_ci.yml b/.github/workflows/bindings_ci.yml index 2bcab0fd3..32b86d26c 100644 --- a/.github/workflows/bindings_ci.yml +++ b/.github/workflows/bindings_ci.yml @@ -175,7 +175,7 @@ jobs: run: swift test - name: Build Framework - run: target/debug/xtask swift build-framework --target=aarch64-apple-ios --profile=dev + run: target/debug/xtask swift build-framework --target=aarch64-apple-ios --profile=release complement-crypto: name: "Run Complement Crypto tests"