-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
241 lines (231 loc) · 7.79 KB
/
Copy pathproject.yml
File metadata and controls
241 lines (231 loc) · 7.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
name: Yamete
options:
bundleIdPrefix: com.studnicky
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.4"
createIntermediateGroups: true
defaultConfig: Debug
configs:
Debug: debug
DebugDirect: debug
ReleaseAppStore: release
ReleaseDirect: release
settings:
base:
SWIFT_VERSION: "6"
SWIFT_STRICT_CONCURRENCY: complete
MACOSX_DEPLOYMENT_TARGET: "14.0"
ARCHS: arm64
DEVELOPMENT_LANGUAGE: en
PRODUCT_BUNDLE_IDENTIFIER: com.studnicky.yamete
MARKETING_VERSION: "2.5.1"
CURRENT_PROJECT_VERSION: "15"
ENABLE_HARDENED_RUNTIME: true
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: ""
packages:
Yamete:
path: .
# Test-only package for SwiftUI/NSView snapshot baselines. Also declared
# in Package.swift dependencies for SPM `swift test`. Linked into test
# targets only — main app target has no dependency.
swift-snapshot-testing:
url: https://github.com/pointfreeco/swift-snapshot-testing
from: 1.19.0
targets:
Yamete:
type: application
platform: macOS
sources:
- path: Sources/YameteApp/YameteApp.swift
- path: App/Resources
buildPhase: resources
dependencies:
- package: Yamete
product: YameteApp
- package: Yamete
product: YameteCore
- package: Yamete
product: SensorKit
- package: Yamete
product: ResponseKit
- sdk: IOKit.framework
- sdk: AVFoundation.framework
- sdk: CoreAudio.framework
- sdk: CoreMotion.framework
- sdk: ServiceManagement.framework
- sdk: SwiftUI.framework
- sdk: AppKit.framework
- sdk: UserNotifications.framework
settings:
base:
PRODUCT_NAME: Yamete
EXECUTABLE_NAME: yamete
PRODUCT_BUNDLE_IDENTIFIER: com.studnicky.yamete
INFOPLIST_FILE: App/Config/Info.plist
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
CODE_SIGN_ENTITLEMENTS: App/Config/AppStore.entitlements
LD_RUNPATH_SEARCH_PATHS: "@executable_path/../Frameworks"
# Both paths are required and not redundant: SWIFT_INCLUDE_PATHS lets
# the Swift driver locate `module.modulemap`, while HEADER_SEARCH_PATHS
# lets the C/Objective-C compiler resolve the headers that module map
# references. Removing either breaks the IOHIDPublic C bridging module.
SWIFT_INCLUDE_PATHS: "$(SRCROOT)/Sources/IOHIDPublic/include"
HEADER_SEARCH_PATHS: "$(SRCROOT)/Sources/IOHIDPublic/include"
configs:
Debug:
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
SWIFT_ACTIVE_COMPILATION_CONDITIONS: "DEBUG"
DebugDirect:
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
SWIFT_ACTIVE_COMPILATION_CONDITIONS: "DEBUG DIRECT_BUILD"
PRODUCT_NAME: Yamete+
EXECUTABLE_NAME: yamete-plus
PRODUCT_BUNDLE_IDENTIFIER: com.studnicky.yamete.plus
CODE_SIGN_ENTITLEMENTS: App/Config/Direct.entitlements
ReleaseAppStore:
SWIFT_OPTIMIZATION_LEVEL: "-O"
SWIFT_COMPILATION_MODE: wholemodule
DEAD_CODE_STRIPPING: true
STRIP_INSTALLED_PRODUCT: true
STRIP_SWIFT_SYMBOLS: true
CODE_SIGN_ENTITLEMENTS: App/Config/AppStore.entitlements
ReleaseDirect:
SWIFT_OPTIMIZATION_LEVEL: "-O"
SWIFT_COMPILATION_MODE: wholemodule
SWIFT_ACTIVE_COMPILATION_CONDITIONS: "DIRECT_BUILD"
DEAD_CODE_STRIPPING: true
STRIP_INSTALLED_PRODUCT: true
STRIP_SWIFT_SYMBOLS: true
PRODUCT_NAME: Yamete+
EXECUTABLE_NAME: yamete-plus
PRODUCT_BUNDLE_IDENTIFIER: com.studnicky.yamete.plus
CODE_SIGN_ENTITLEMENTS: App/Config/Direct.entitlements
YameteTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests
dependencies:
- target: Yamete
- package: Yamete
product: YameteCore
- package: Yamete
product: SensorKit
- package: Yamete
product: ResponseKit
- package: Yamete
product: YameteApp
- package: swift-snapshot-testing
product: SnapshotTesting
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.studnicky.yamete.tests
# Host-app test target — same sources as YameteTests, but explicitly
# bundled inside Yamete.app so Bundle.main resolves to a real .app
# at runtime. Real driver paths that XCTSkip under SPM (UN center,
# full Haptic engine, CGEvent.post under Accessibility) RUN here.
# Driven by `make test-host-app` → xcodebuild test -scheme YameteHostTest.
YameteHostTest:
type: bundle.unit-test
platform: macOS
sources:
# Exclude `Tests/__Snapshots__` from the bundle resource set —
# SPM's `process` strategy de-dupes filenames across nested
# directories, but Xcode's CopyResources phase flattens them and
# would otherwise duplicate every `test_cell_*.png` baseline
# between the AppStore/ and Direct/ subtrees. The snapshot suite
# opens its baselines via path, not via Bundle.main, so excluding
# them from the bundle does NOT hurt cell behaviour.
- path: Tests
excludes:
# SPM's process(...) rule de-dupes nested resources; Xcode's
# CopyResources phase flattens them. Exclude the snapshot
# baselines (they're loaded by path, not Bundle.main) and the
# markdown sidecars (READMEs / PLAN.md) that collide on the
# bundle's flat Resources/ directory.
- "__Snapshots__/**"
- "**/*.md"
dependencies:
- target: Yamete
- package: Yamete
product: YameteCore
- package: Yamete
product: SensorKit
- package: Yamete
product: ResponseKit
- package: Yamete
product: YameteApp
- package: swift-snapshot-testing
product: SnapshotTesting
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.studnicky.yamete.hosttest
# XcodeGen does not auto-write an Info.plist for bundle.unit-test
# targets; let the toolchain generate one from the standard
# template so codesigning has something to embed.
GENERATE_INFOPLIST_FILE: "YES"
# XcodeGen auto-derives TEST_HOST / BUNDLE_LOADER from the
# `target: Yamete` dependency, but we pin them here to make
# the host-app contract explicit and so the cell-level guards
# in DriverParity_Tests / NotificationAuthRealDriverTests can
# rely on Bundle.main.bundleURL resolving to "Yamete.app".
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/Yamete.app/Contents/MacOS/yamete"
BUNDLE_LOADER: "$(TEST_HOST)"
schemes:
# NOTE: run config is Debug — sandbox entitlements only apply via 'make appstore' or archive. Do not rely on Xcode Run button for sandboxing checks.
Yamete-AppStore:
build:
targets:
Yamete: all
run:
config: Debug
test:
config: Debug
targets:
- YameteTests
profile:
config: ReleaseAppStore
analyze:
config: Debug
archive:
config: ReleaseAppStore
Yamete-Direct:
build:
targets:
Yamete: all
run:
config: DebugDirect
test:
config: DebugDirect
targets:
- YameteTests
profile:
config: ReleaseDirect
analyze:
config: DebugDirect
archive:
config: ReleaseDirect
# Phase 1 — host-app xcodebuild test. Runs the YameteHostTest bundle
# inside the bundled Yamete.app so Bundle.main resolves to a real
# .app and Real-driver test cells stop XCTSkipping. See
# `make test-host-app` and Tests/Mutation/README.md "Phase 1 —
# host-app xcodebuild" section.
YameteHostTest:
build:
targets:
Yamete: all
YameteHostTest: test
test:
config: Debug
targets:
- YameteHostTest
run:
config: Debug
analyze:
config: Debug
fileGroups:
- App
- Assets
- docs