From 85e42f993c46d6e4ea04124801db3b8f97ecbe67 Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Mon, 1 Jul 2024 14:36:55 -0700 Subject: [PATCH] avoid pinning to specific simulator version. its breaks as the available platforms change on CI --- .github/workflows/ios.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 8ca7ce21..071f634e 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -36,10 +36,10 @@ jobs: uses: actions/checkout@v4 - name: Build - run: set -o pipefail && xcodebuild build -scheme maplibre-navigation-ios -destination 'platform=iOS Simulator,OS=17.0.1,name=iPhone 15 Pro' | xcbeautify --renderer github-actions + run: set -o pipefail && xcodebuild build -scheme maplibre-navigation-ios -destination 'generic/platform=iOS' | xcbeautify --renderer github-actions - name: Test - run: set -o pipefail && xcodebuild test -scheme maplibre-navigation-ios -destination 'platform=iOS Simulator,OS=17.0.1,name=iPhone 15 Pro' | xcbeautify --renderer github-actions + run: set -o pipefail && xcodebuild test -scheme maplibre-navigation-ios -destination 'generic/platform=iOS' | xcbeautify --renderer github-actions - name: Build Example Project - run: set -o pipefail && xcodebuild build -project Example/Example.xcodeproj -scheme Example -destination 'platform=iOS Simulator,OS=17.0.1,name=iPhone 15 Pro' CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" | xcbeautify --renderer github-actions + run: set -o pipefail && xcodebuild build -project Example/Example.xcodeproj -scheme Example -destination 'generic/platform=iOS' CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" | xcbeautify --renderer github-actions