-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtargets.yml
More file actions
52 lines (39 loc) · 1.16 KB
/
Copy pathtargets.yml
File metadata and controls
52 lines (39 loc) · 1.16 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
targets:
DemoProject:
type: application
platform: iOS
deploymentTarget: "15.0"
sources: [Sources]
info:
path: "Sources/Info.plist"
properties:
UILaunchStoryboardName: LaunchScreen.storyboard
dependencies:
# Local packages
- package: Styles
product: Styles
# Third-party packages
- package: ComposableArchitecture
settings:
PRODUCT_BUNDLE_IDENTIFIER: uk.creed.demoproject
DEVELOPMENT_TEAM: P5DLG93V76
OTHER_SWIFT_FLAGS: -Onone -Xfrontend -warn-long-function-bodies=100 -Xfrontend -warn-long-expression-type-checking=100
preBuildScripts:
- path: "Scripts/RunScripts.sh"
name: Run Scripts
- path: "Scripts/BuildTools.sh"
name: Run BuildTools
DemoProjectUnitTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "15.0"
sources: [UnitTests]
dependencies:
- target: DemoProject
DemoProjectUITests:
type: bundle.ui-testing
platform: iOS
deploymentTarget: "15.0"
sources: [UITests]
dependencies:
- target: DemoProject