File tree Expand file tree Collapse file tree 1 file changed +35
-7
lines changed
Expand file tree Collapse file tree 1 file changed +35
-7
lines changed Original file line number Diff line number Diff line change 11# .github/workflows/ci.yml
22name : CI
3-
43on : [push, pull_request]
54
65jobs :
6+ ios-build :
7+ continue-on-error : true
8+ runs-on : macos-15
9+ steps :
10+ - uses : actions/checkout@v4
11+ - uses : maxim-lobanov/setup-xcode@v1
12+ with : { xcode-version: "16.x" }
13+ - run : |
14+ set -o pipefail
15+ xcodebuild \
16+ -project SleepTrigger.xcodeproj \
17+ -scheme "SleepTrigger" \
18+ -destination "generic/platform=iOS Simulator" \
19+ CODE_SIGNING_ALLOWED=NO \
20+ clean build
21+
22+ macos-build :
23+ continue-on-error : true
24+ runs-on : macos-15
25+ steps :
26+ - uses : actions/checkout@v4
27+ - uses : maxim-lobanov/setup-xcode@v1
28+ with : { xcode-version: "16.x" }
29+ - run : |
30+ set -o pipefail
31+ xcodebuild \
32+ -project SleepTrigger.xcodeproj \
33+ -scheme "SleepTriggerMac" \
34+ -destination "platform=macOS" \
35+ CODE_SIGNING_ALLOWED=NO \
36+ clean build
37+
738 watchos-build :
839 runs-on : macos-15
940 steps :
1041 - uses : actions/checkout@v4
11- - name : Select Xcode 16.x
12- uses : maxim-lobanov/setup-xcode@v1
13- with :
14- xcode-version : " 16.x"
15- - name : Build watchOS app (no tests)
16- run : |
42+ - uses : maxim-lobanov/setup-xcode@v1
43+ with : { xcode-version: "16.x" }
44+ - run : |
1745 set -o pipefail
1846 xcodebuild \
1947 -project SleepTrigger.xcodeproj \
You can’t perform that action at this time.
0 commit comments