-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
78 lines (78 loc) · 2.02 KB
/
project.yml
File metadata and controls
78 lines (78 loc) · 2.02 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
name: RevaApp
configs:
Debug: debug
Release: release
targetTemplates:
RevaAppBase:
type: application
platform: iOS
deploymentTarget: 10.0
scheme:
testTargets:
- RevaAppTests
gatherCoverageData: true
sources:
- path: RevaApp
excludes:
- "**/*.md" # excludes all files with the .md extension
settings:
base:
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
CODE_SIGN_STYLE: Manual
MARKETING_VERSION: 1.0.0
SWIFT_VERSION: 5.2
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
TARGETED_DEVICE_FAMILY: 1
DEVELOPMENT_TEAM: ""
ENABLE_BITCODE: false
LIBRARY_SEARCH_PATHS:
- "$(inherited)"
- "$(PROJECT_DIR)/RevaApp"
# In case need any dependencies
# dependencies:
# - sdk: UIKit.framework
# - framework: AnyFramework.framework
# embed: false
# link: true
# codeSign: false
postBuildScripts:
- script: |
echo "post build scripts"
name: "Echo Post Build Scripts"
targets:
RevaApp:
templates:
- RevaAppBase
settings:
base:
INFOPLIST_FILE: RevaApp/Common/Plist/Production/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: revaapp.sample
RevaApp-STAGE:
templates:
- RevaAppBase
settings:
base:
INFOPLIST_FILE: RevaApp/Common/Plist/Stage/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: revaapp.sample.stage
configs:
Debug:
SWIFT_ACTIVE_COMPILATION_CONDITIONS: STAGE DEBUG
Release:
SWIFT_ACTIVE_COMPILATION_CONDITIONS: STAGE
RevaAppTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "10.0"
dependencies:
- target: RevaApp
settings:
CODE_SIGN_STYLE: Manual
SWIFT_VERSION: "5.2"
INFOPLIST_FILE: RevaAppTests/Info.plist
TEST_HOST: $(BUILT_PRODUCTS_DIR)/RevaApp.app/RevaApp
scheme:
testTargets:
- RevaAppTests
gatherCoverageData: true
sources:
- path: RevaAppTests