generated from bitwarden/template
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathproject-bwa.yml
More file actions
292 lines (291 loc) · 9.77 KB
/
project-bwa.yml
File metadata and controls
292 lines (291 loc) · 9.77 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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
name: Authenticator
fileGroups:
- Configs-bwa
configs:
Debug: debug
Release: release
include:
- path: project-common.yml
options:
fileTypes:
"icon":
file: true
settings:
MARKETING_VERSION: 2024.6.1
CURRENT_PROJECT_VERSION: 1
packages:
SwiftProtobuf:
url: https://github.com/apple/swift-protobuf
exactVersion: 1.31.0
projectReferences:
BitwardenKit:
path: BitwardenKit.xcodeproj
schemes:
Authenticator:
build:
targets:
Authenticator: all
AuthenticatorTests: [test]
run:
commandLineArguments:
"-com.apple.CoreData.ConcurrencyDebug 1": true
test:
commandLineArguments:
"-testing": true
environmentVariables:
TZ: UTC
gatherCoverageData: true
coverageTargets:
- Authenticator
- AuthenticatorShared
- BitwardenKit/AuthenticatorBridgeKit
- BitwardenKit/BitwardenKit
- BitwardenKit/Networking
targets:
- AuthenticatorTests
- AuthenticatorSharedTests
- BitwardenKit/AuthenticatorBridgeKitTests
- BitwardenKit/BitwardenKitTests
- BitwardenKit/NetworkingTests
testPlans:
- path: TestPlans/Authenticator-Default.xctestplan
defaultPlan: true
- path: TestPlans/Authenticator-Unit.xctestplan
- path: TestPlans/Authenticator-Snapshot.xctestplan
- path: TestPlans/Authenticator-ViewInspector.xctestplan
AuthenticatorShared:
build:
targets:
AuthenticatorShared: all
AuthenticatorSharedTests: [test]
AuthenticatorSharedSnapshotTests: [test]
AuthenticatorSharedViewInspectorTests: [test]
test:
commandLineArguments:
"-testing": true
environmentVariables:
TZ: UTC
gatherCoverageData: true
targets:
- AuthenticatorSharedTests
- AuthenticatorSharedSnapshotTests
- AuthenticatorSharedViewInspectorTests
testPlans:
- path: TestPlans/Authenticator-Default.xctestplan
defaultPlan: true
- path: TestPlans/Authenticator-Unit.xctestplan
- path: TestPlans/Authenticator-Snapshot.xctestplan
- path: TestPlans/Authenticator-ViewInspector.xctestplan
targets:
Authenticator:
type: application
platform: iOS
configFiles:
Debug: Configs/Authenticator-Debug.xcconfig
Release: Configs/Authenticator-Release.xcconfig
settings:
base:
INFOPLIST_FILE: Authenticator/Application/Support/Info.plist
templates:
- CommonTarget
templateAttributes:
sourcesPath: Authenticator
sources:
- path: README-bwa.md
buildPhase: none
- path: swiftgen-bwa.yml
buildPhase: none
dependencies:
- target: AuthenticatorShared
- target: BitwardenKit/AuthenticatorBridgeKit
- target: BitwardenKit/BitwardenKit
- target: BitwardenKit/BitwardenResources
- target: BitwardenKit/Networking
- package: BitwardenSdk
- package: Firebase
product: FirebaseCrashlytics
preBuildScripts:
- path: Scripts-bwa/update_acknowledgements.sh
name: "Settings.bundle: Update Acknowledgements"
outputFiles:
- $(SRCROOT)/Authenticator/Application/Support/Settings.bundle/Acknowledgements.plist
- $(SRCROOT)/Authenticator/Application/Support/Settings.bundle/Acknowledgements.latest_results.txt
- $(SRCROOT)/Authenticator/Application/Support/Settings.bundle/Acknowledgements
postCompileScripts:
- script: |
if [[ ! "$PATH" =~ "/opt/homebrew/bin" ]]; then
PATH="/opt/homebrew/bin:$PATH"
fi
mint run swiftlint
name: Swiftlint
basedOnDependencyAnalysis: false
- script: |
if [[ ! "$PATH" =~ "/opt/homebrew/bin" ]]; then
PATH="/opt/homebrew/bin:$PATH"
fi
mint run swiftformat --lint --lenient .
name: SwiftFormat Lint
basedOnDependencyAnalysis: false
postBuildScripts:
- path: Scripts-bwa/update_settings_version_number.sh
name: "Settings.bundle: Update Version Number"
basedOnDependencyAnalysis: false
AuthenticatorTests:
type: bundle.unit-test
platform: iOS
settings:
base:
INFOPLIST_FILE: Authenticator/Application/TestHelpers/Support/Info.plist
templates:
- TestTarget
templateAttributes:
sourcesPath: Authenticator
sources:
- path: GlobalTestHelpers-bwa
dependencies:
- target: Authenticator
- target: BitwardenKit/AuthenticatorBridgeKit
- target: BitwardenKit/TestHelpers
- package: SnapshotTesting
randomExecutionOrder: true
AuthenticatorShared:
type: framework
platform: iOS
configFiles:
Debug: Configs/AuthenticatorShared-Debug.xcconfig
Release: Configs/AuthenticatorShared-Release.xcconfig
settings:
base:
APPLICATION_EXTENSION_API_ONLY: true
INFOPLIST_FILE: AuthenticatorShared/UI/Platform/Application/Support/Info.plist
templates:
- CommonTarget
- SourceryTarget
templateAttributes:
sourcesPath: AuthenticatorShared
sources:
- path: AuthenticatorShared/UI/Platform/Application/Support/Generated/Assets.swift
optional: true
- path: AuthenticatorShared/Core/Vault/Services/Importers/Support/Generated/GoogleAuth.pb.swift
optional: true
dependencies:
- package: BitwardenSdk
- package: SwiftProtobuf
- target: BitwardenKit/AuthenticatorBridgeKit
- target: BitwardenKit/BitwardenKit
- target: BitwardenKit/BitwardenResources
- target: BitwardenKit/Networking
preBuildScripts:
- name: SwiftGen
script: |
if [[ ! "$PATH" =~ "/opt/homebrew/bin" ]]; then
PATH="/opt/homebrew/bin:$PATH"
fi
mint run swiftgen config run --config "swiftgen-bwa.yml"
basedOnDependencyAnalysis: false
outputFiles:
- $(SRCROOT)/AuthenticatorShared/UI/Platform/Application/Support/Generated/Assets.swift
- name: Protobuf
script: |
if [[ ! "$PATH" =~ "/opt/homebrew/bin" ]]; then
PATH="/opt/homebrew/bin:$PATH"
fi
protoc --proto_path=$SRCROOT/AuthenticatorShared/Core/Vault/Services/Importers/Support \
--swift_out=$SRCROOT/AuthenticatorShared/Core/Vault/Services/Importers/Support/Generated \
$SRCROOT/AuthenticatorShared/Core/Vault/Services/Importers/Support/GoogleAuth.proto
outputFiles:
- $(SRCROOT)/AuthenticatorShared/Core/Vault/Services/Importers/Support/Generated/GoogleAuth.pb.swift
AuthenticatorSharedMocks:
type: framework
platform: iOS
settings:
base:
ENABLE_TESTING_SEARCH_PATHS: YES
GENERATE_INFOPLIST_FILE: YES
templates:
- MocksTarget
templateAttributes:
sourcesPath: AuthenticatorShared
sources:
- path: AuthenticatorShared/Sourcery/Generated/AutoMockable.generated.swift
optional: true
dependencies:
- target: AuthenticatorShared
- target: BitwardenKit/AuthenticatorBridgeKitMocks
- target: BitwardenKit/TestHelpers
AuthenticatorSharedTests:
type: bundle.unit-test
platform: iOS
settings:
base:
BUNDLE_LOADER: "$(TEST_HOST)"
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/Authenticator.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Authenticator"
INFOPLIST_FILE: AuthenticatorShared/UI/Platform/Application/TestHelpers/Support/Info.plist
templates:
- TestTarget
templateAttributes:
sourcesPath: AuthenticatorShared
sources:
- path: GlobalTestHelpers-bwa
dependencies:
- target: Authenticator
- target: AuthenticatorShared
- target: AuthenticatorSharedMocks
- target: BitwardenKit/AuthenticatorBridgeKitMocks
- target: BitwardenKit/BitwardenKitMocks
- target: BitwardenKit/TestHelpers
- package: BitwardenSdk
- package: SnapshotTesting
product: InlineSnapshotTesting
randomExecutionOrder: true
AuthenticatorSharedSnapshotTests:
type: bundle.unit-test
platform: iOS
settings:
base:
BUNDLE_LOADER: "$(TEST_HOST)"
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/Authenticator.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Authenticator"
INFOPLIST_FILE: AuthenticatorShared/UI/Platform/Application/TestHelpers/Support/Info.plist
templates:
- SnapshotTestTarget
templateAttributes:
sourcesPath: AuthenticatorShared
sources:
- path: GlobalTestHelpers-bwa
dependencies:
- target: Authenticator
- target: AuthenticatorShared
- target: AuthenticatorSharedMocks
- target: BitwardenKit/AuthenticatorBridgeKitMocks
- target: BitwardenKit/BitwardenKitMocks
- target: BitwardenKit/TestHelpers
- package: BitwardenSdk
- package: SnapshotTesting
- package: SnapshotTesting
product: InlineSnapshotTesting
randomExecutionOrder: true
AuthenticatorSharedViewInspectorTests:
type: bundle.unit-test
platform: iOS
settings:
base:
BUNDLE_LOADER: "$(TEST_HOST)"
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/Authenticator.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Authenticator"
INFOPLIST_FILE: AuthenticatorShared/UI/Platform/Application/TestHelpers/Support/Info.plist
templates:
- ViewInspectorTestTarget
templateAttributes:
sourcesPath: AuthenticatorShared
sources:
- path: GlobalTestHelpers-bwa
dependencies:
- target: Authenticator
- target: AuthenticatorShared
- target: AuthenticatorSharedMocks
- target: BitwardenKit/AuthenticatorBridgeKitMocks
- target: BitwardenKit/BitwardenKitMocks
- target: BitwardenKit/TestHelpers
- target: BitwardenKit/ViewInspectorTestHelpers
- package: BitwardenSdk
- package: ViewInspector
randomExecutionOrder: true