Skip to content

Commit de09c34

Browse files
committed
version 1 completed
1 parent b345b1b commit de09c34

File tree

2 files changed

+7
-36
lines changed

2 files changed

+7
-36
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,19 @@
11
# .github/workflows/ci.yml
22
name: CI
3+
34
on: [push, pull_request]
45

56
jobs:
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 \

SleepTrigger.xcodeproj/project.pbxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,6 @@
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,

0 commit comments

Comments
 (0)