File tree Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change 25
25
- cron : ' 35 11 * * *' # once a day @ 11:35am UTC (4:35am PST)
26
26
27
27
jobs :
28
- macOS-12 :
29
- name : macOS 12 Monterey
30
- runs-on : macos-12
31
- steps :
32
- - uses : actions/checkout@main
33
- - name : Build
34
- run : xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "generic/platform=macOS,name=Any Mac" | xcpretty && exit ${PIPESTATUS[0]}
35
- - name : Unit Tests
36
- run : xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "platform=macOS" | xcpretty && exit ${PIPESTATUS[0]}
37
-
38
28
macOS-13 :
39
29
name : macOS 13 Ventura
40
30
runs-on : macos-13
57
47
run : xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "generic/platform=macOS,name=Any Mac" | xcpretty && exit ${PIPESTATUS[0]}
58
48
- name : Unit Tests
59
49
run : xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "platform=macOS" | xcpretty && exit ${PIPESTATUS[0]}
50
+
51
+ macOS-15 :
52
+ name : macOS 15 Sequoia
53
+ runs-on : macos-15
54
+ steps :
55
+ - uses : actions/checkout@main
56
+ - uses : maxim-lobanov/setup-xcode@v1
57
+ with :
58
+ xcode-version : latest-stable # Sometimes a newer version of Xcode is available but isn't yet made default
59
+ - name : Build
60
+ run : xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "generic/platform=macOS,name=Any Mac" | xcpretty && exit ${PIPESTATUS[0]}
61
+ - name : Unit Tests
62
+ run : xcodebuild test -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MIDIKit-CI" -destination "platform=macOS" | xcpretty && exit ${PIPESTATUS[0]}
60
63
61
64
macCatalyst :
62
65
name : macCatalyst
You can’t perform that action at this time.
0 commit comments