-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.yml
57 lines (54 loc) · 1.25 KB
/
project.yml
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
targetTemplates:
BaseTarget:
platform: iOS
AppTarget:
templates: [BaseTarget]
type: application
sources: ["CardBox"]
UITestTarget:
templates: [BaseTarget]
type: bundle.ui-testing
sources: ["CardBoxUITests"]
UnitTestTarget:
templates: [BaseTarget]
type: bundle.unit-test
sources: ["CardBoxTests"]
name: CardBox
options:
bundleIdPrefix: cs3217
xcodeVersion: 13.3
deploymentTarget:
iOS: 15.1
groupSortPosition: top
generateEmptyDirectories: true
objectVersion: 52
packages:
Firebase:
url: https://github.com/firebase/firebase-ios-sdk.git
version: 8.14.0
targets:
CardBox:
templates: [AppTarget]
dependencies:
- package: Firebase
product: FirebaseFirestore
- package: Firebase
product: FirebaseFirestoreSwift-Beta
preBuildScripts:
- path: scripts/swiftlint.sh
name: Run Swiftlint
scheme:
testTargets:
- CardBoxTests
- CardBoxUITests
CardBoxTests:
templates: [UnitTestTarget]
settings:
TEST_HOST: '$(BUILT_PRODUCTS_DIR)/CardBox.app/CardBox'
dependencies:
- target: CardBox
CardBoxUITests:
templates: [UITestTarget]
TEST_TARGET_NAME: 'CardBox'
dependencies:
- target: CardBox