From 85954efc04a85a259c496b3c79a06210d1ed5630 Mon Sep 17 00:00:00 2001 From: Steffan Andrews Date: Sun, 29 Sep 2024 15:22:30 -0700 Subject: [PATCH] Updated GitHub CI --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7ea85b1558..cadb1dc498 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -79,9 +79,9 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable # Sometimes a newer version of Xcode is available but isn't yet made default - - name: iPhone 12 Simulator - Build + - name: Build run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "generic/platform=iOS Simulator,name=Any iOS Device" | xcpretty && exit ${PIPESTATUS[0]} - - name: iPhone 12 Simulator - Unit Tests + - name: Unit Tests run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "platform=iOS Simulator,name=iPhone 15" | xcpretty && exit ${PIPESTATUS[0]} tvOS: @@ -92,9 +92,9 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable # Sometimes a newer version of Xcode is available but isn't yet made default - - name: Apple TV - Build + - name: Build run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "generic/platform=tvOS Simulator,name=Any tvOS Simulator Device" | xcpretty && exit ${PIPESTATUS[0]} - - name: Apple TV - Unit Tests + - name: Unit Tests run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "platform=tvOS Simulator,name=Apple TV 4K (3rd generation)" | xcpretty && exit ${PIPESTATUS[0]} watchOS: @@ -105,9 +105,9 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable # Sometimes a newer version of Xcode is available but isn't yet made default - - name: Apple Watch - Build + - name: Build run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "generic/platform=watchOS Simulator,name=Any watchOS Simulator Device" | xcpretty && exit ${PIPESTATUS[0]} - - name: Apple Watch - Unit Tests + - name: Unit Tests run: xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "platform=watchOS Simulator,name=Apple Watch Series 10 (46mm)" | xcpretty && exit ${PIPESTATUS[0]}