-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
111 lines (107 loc) · 3.68 KB
/
Copy pathproject.yml
File metadata and controls
111 lines (107 loc) · 3.68 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
name: Utt
options:
bundleIdPrefix: dev.jurrejan
deploymentTarget:
macOS: "26.0"
createIntermediateGroups: true
groupSortPosition: top
packages:
UttCore:
path: UttCore
# Versions verified against the real tags — see docs/phase0-brief.md.
ComposableArchitecture:
url: https://github.com/pointfreeco/swift-composable-architecture
exactVersion: 1.26.1
Dependencies:
url: https://github.com/pointfreeco/swift-dependencies
exactVersion: 1.14.1
FluidAudio:
url: https://github.com/FluidInference/FluidAudio
exactVersion: 0.15.5
# Renamed from argmaxinc/WhisperKit; module is still `WhisperKit`.
ArgmaxOSS:
url: https://github.com/argmaxinc/argmax-oss-swift
exactVersion: 1.1.0
Sauce:
url: https://github.com/Clipy/Sauce
exactVersion: 2.5.2
Sparkle:
url: https://github.com/sparkle-project/Sparkle
exactVersion: 2.9.5
targets:
Utt:
type: application
platform: macOS
sources:
# Both are build inputs, not resources — without the exclude they also get
# copied into Resources/ where a stray Info.plist confuses codesign.
- path: Utt
excludes:
- "Resources/Info.plist"
- "Resources/utt.entitlements"
dependencies:
- package: UttCore
product: UttCore
- package: ComposableArchitecture
product: ComposableArchitecture
- package: Dependencies
product: DependenciesMacros
- package: FluidAudio
product: FluidAudio
- package: ArgmaxOSS
product: WhisperKit
- package: Sauce
product: Sauce
- package: Sparkle
product: Sparkle
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: dev.jurrejan.utt
PRODUCT_NAME: utt
INFOPLIST_FILE: Utt/Resources/Info.plist
# Names Utt/Resources/AppIcon.icon. Regenerate with `just icon`.
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
CODE_SIGN_ENTITLEMENTS: Utt/Resources/utt.entitlements
MARKETING_VERSION: "2.0.0"
CURRENT_PROJECT_VERSION: "11"
SWIFT_VERSION: "6.0"
SWIFT_STRICT_CONCURRENCY: complete
ENABLE_HARDENED_RUNTIME: YES
ENABLE_APP_SANDBOX: NO
# Manual signing against "Developer ID Application: Jurre-Jan Smit". The
# hash is hardcoded on purpose: any name-based lookup that falls back to
# ad-hoc would change the designated requirement on every build and reset
# every TCC grant. Debug and Release share it, so the build you test is
# signed exactly like the build you ship.
CODE_SIGN_STYLE: Manual
CODE_SIGN_IDENTITY: 72B6E55BE646D0664EF83C986B55B8F6D58BC2B6
DEVELOPMENT_TEAM: KA6433FU8U
PROVISIONING_PROFILE_SPECIFIER: ""
CODE_SIGNING_REQUIRED: YES
CODE_SIGNING_ALLOWED: YES
COMBINE_HIDPI_IMAGES: YES
scheme:
testTargets:
- UttTests
# Reducer-level tests. UttCore covers everything that needs no app; this covers
# the effect wiring that only exists once the clients are attached.
UttTests:
type: bundle.unit-test
platform: macOS
sources:
- path: Tests
dependencies:
# No package dependencies: the test bundle loads the host app, and linking
# TCA a second time leaves its SwiftUI extensions unresolved at link time.
- target: Utt
embed: false
link: false
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: dev.jurrejan.utt.tests
SWIFT_VERSION: "6.0"
GENERATE_INFOPLIST_FILE: YES
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/utt.app/Contents/MacOS/utt"
BUNDLE_LOADER: "$(TEST_HOST)"
CODE_SIGN_STYLE: Manual
CODE_SIGN_IDENTITY: 72B6E55BE646D0664EF83C986B55B8F6D58BC2B6