File tree Expand file tree Collapse file tree 2 files changed +7
-36
lines changed
Expand file tree Collapse file tree 2 files changed +7
-36
lines changed Original file line number Diff line number Diff line change 11# .github/workflows/ci.yml
22name : CI
3+
34on : [push, pull_request]
45
56jobs :
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-
387 watchos-build :
398 runs-on : macos-15
409 steps :
4110 - uses : actions/checkout@v4
42- - uses : maxim-lobanov/setup-xcode@v1
43- with : { xcode-version: "16.x" }
44- - run : |
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 : |
4517 set -o pipefail
4618 xcodebuild \
4719 -project SleepTrigger.xcodeproj \
Original file line number Diff line number Diff line change 168168 isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
169169 membershipExceptions = (
170170 Core/AsmKernels.swift,
171- Core/DemoTools.swift,
172171 Core/Goertzel.metal,
173172 Core/MetalSpectral.swift,
174173 Core/PerfRunner.swift,
You can’t perform that action at this time.
0 commit comments