Skip to content

Commit

Permalink
Adapt xcodebuild destination strings to new format
Browse files Browse the repository at this point in the history
  • Loading branch information
wallisch committed Sep 25, 2024
1 parent 422867b commit 990fe55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
with:
submodules: true
- name: Build
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild build-for-testing -scheme ChromaSwift -destination "platform=macos,arch=arm64" -enableCodeCoverage YES 2>&1 | xcbeautify --renderer github-actions
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild build-for-testing -scheme ChromaSwift -destination "platform=macOS,arch=arm64" -enableCodeCoverage YES 2>&1 | xcbeautify --renderer github-actions
- name: Test
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild test-without-building -scheme ChromaSwift -destination "platform=macos,arch=arm64" -enableCodeCoverage YES 2>&1 | xcbeautify --renderer github-actions
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild test-without-building -scheme ChromaSwift -destination "platform=macOS,arch=arm64" -enableCodeCoverage YES 2>&1 | xcbeautify --renderer github-actions
- name: Codecov upload
uses: codecov/codecov-action@v4
with:
Expand All @@ -54,9 +54,9 @@ jobs:
with:
submodules: true
- name: Build
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild build-for-testing -scheme ChromaSwift -destination "platform=iOS Simulator,OS=latest,name=iPhone 15" 2>&1 | xcbeautify --renderer github-actions
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild build-for-testing -scheme ChromaSwift -destination "platform=iOS Simulator,OS=latest,name=iPhone 16" 2>&1 | xcbeautify --renderer github-actions
- name: Test
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild test-without-building -scheme ChromaSwift -destination "platform=iOS Simulator,OS=latest,name=iPhone 15" 2>&1 | xcbeautify --renderer github-actions
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild test-without-building -scheme ChromaSwift -destination "platform=iOS Simulator,OS=latest,name=iPhone 16" 2>&1 | xcbeautify --renderer github-actions

tvOS:
name: tvOS
Expand Down

0 comments on commit 990fe55

Please sign in to comment.