From 8e29d65f54ac45fb487de55b37da41ed62a58c3f Mon Sep 17 00:00:00 2001 From: Kornel Date: Thu, 28 Nov 2024 19:01:10 +0000 Subject: [PATCH] Work around Rust setting inconsistent iOS SDK version --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32aa3afe..d587a4a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,16 +113,22 @@ jobs: target: aarch64-apple-ios os: macos-latest check_only: true + custom_env: + IPHONEOS_DEPLOYMENT_TARGET: 17.5 # It's... theoretically possible to run tests on iPhone Simulator, # but for now, make sure that BoringSSL only builds. - thing: aarch64-ios-sim target: aarch64-apple-ios-sim os: macos-latest check_only: true + custom_env: + IPHONEOS_DEPLOYMENT_TARGET: 17.5 - thing: x86_64-ios target: x86_64-apple-ios os: macos-latest check_only: true + custom_env: + IPHONEOS_DEPLOYMENT_TARGET: 17.5 - thing: i686-linux target: i686-unknown-linux-gnu rust: stable