From c44949d208f9f8f56930ec3d08c299e4e18974c4 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 27 Nov 2024 12:37:30 +0100 Subject: [PATCH] Update CI to run on macOS 15 with Xcode 16.0 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3c7dad87..4ca904641 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,12 +4,12 @@ on: jobs: build: - runs-on: macos-14 + runs-on: macos-15 steps: - uses: actions/checkout@v4 with: submodules: true show-progress: false - - run: sudo xcode-select --switch /Applications/Xcode_15.3.app/Contents/Developer + - run: sudo xcode-select --switch /Applications/Xcode_16.0.app/Contents/Developer - run: cargo install cargo-lipo - run: set -o pipefail && xcodebuild -workspace deltachat-ios.xcworkspace -scheme deltachat-ios -destination "platform=iOS Simulator,name=iPhone SE (3rd generation)" | xcbeautify --renderer github-actions