[iOS] Rename scheme in workflows after rebrand

This commit is contained in:
Yannik Bloscheck
2025-06-18 10:21:13 +02:00
parent 0051c7120d
commit ecc454a2bd
2 changed files with 5 additions and 5 deletions

View File

@@ -41,7 +41,7 @@ jobs:
LANG: en_US.UTF-8 # Fastlane complains that the terminal is using ASCII. LANG: en_US.UTF-8 # Fastlane complains that the terminal is using ASCII.
LANGUAGE: en_US.UTF-8 LANGUAGE: en_US.UTF-8
LC_ALL: en_US.UTF-8 LC_ALL: en_US.UTF-8
TEST_RESULTS_BUNDLE_NAME: OMaps-Test-Results TEST_RESULTS_BUNDLE_NAME: CoMaps-Test-Results
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@@ -75,7 +75,7 @@ jobs:
run: | run: |
xcodebuild test \ xcodebuild test \
-workspace xcode/omim.xcworkspace \ -workspace xcode/omim.xcworkspace \
-scheme OMaps \ -scheme CoMaps \
-configuration Debug \ -configuration Debug \
-sdk iphonesimulator \ -sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 16 Pro Max,OS=latest' \ -destination 'platform=iOS Simulator,name=iPhone 16 Pro Max,OS=latest' \
@@ -98,7 +98,7 @@ jobs:
run: | run: |
xcodebuild build \ xcodebuild build \
-workspace xcode/omim.xcworkspace \ -workspace xcode/omim.xcworkspace \
-scheme OMaps \ -scheme CoMaps \
-configuration Release \ -configuration Release \
-destination 'generic/platform=iOS' \ -destination 'generic/platform=iOS' \
-quiet \ -quiet \

View File

@@ -56,7 +56,7 @@ jobs:
xcrun simctl bootstatus "${{ env.SIMULATOR_DEVICE }}" -b xcrun simctl bootstatus "${{ env.SIMULATOR_DEVICE }}" -b
xcodebuild test \ xcodebuild test \
-workspace xcode/omim.xcworkspace \ -workspace xcode/omim.xcworkspace \
-scheme OMaps \ -scheme CoMaps \
-configuration Debug \ -configuration Debug \
-sdk iphonesimulator \ -sdk iphonesimulator \
-destination "platform=iOS Simulator,name=${{ env.SIMULATOR_DEVICE }},OS=latest" \ -destination "platform=iOS Simulator,name=${{ env.SIMULATOR_DEVICE }},OS=latest" \
@@ -79,7 +79,7 @@ jobs:
run: | run: |
xcodebuild build \ xcodebuild build \
-workspace xcode/omim.xcworkspace \ -workspace xcode/omim.xcworkspace \
-scheme OMaps \ -scheme CoMaps \
-configuration Release \ -configuration Release \
-destination 'generic/platform=iOS' \ -destination 'generic/platform=iOS' \
-quiet \ -quiet \