-
Notifications
You must be signed in to change notification settings - Fork 20
/
rake-config.yml
54 lines (51 loc) · 1.64 KB
/
rake-config.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
app_name: MyWeight
workspace_path: MyWeight.xcworkspace
project_path: MyWeight.xcodeproj
setup:
bundler:
enabled: true
path: # optional, primarily taken from ENV['BUNDLER_PATH'] then here
brew:
enabled: false
formulas:
- git
submodules:
enabled: false
cocoapods:
enabled: true
carthage:
enabled: false
danger:
dangerfile_paths:
pre_test: 'danger/PreTestDangerfile'
test: 'danger/TestDangerfile'
post_test: 'danger/PostTestDangerfile'
xcode:
version: 15.2
build_path: build # primarily taken from ENV['ARTIFACTS_PATH'] then here
reports_path: reports # primarily taken from ENV['TEST_REPORTS_PATH'] then here
tests:
scheme: MyWeight
destinations:
- 'platform=iOS Simulator,OS=17.2,name=iPhone 15 Pro'
release:
prod:
scheme: MyWeight
configuration: Release
output: MyWeight
sign:
signingCertificate: 'Apple Distribution: Diogo Tridapalli'
provisioningProfiles:
com.diogot.health.My-Weight: 'My Weight'
com.diogot.health.My-Weight.watchkitapp: 'My Weight Watch'
com.diogot.health.My-Weight.watchkitapp.watchkitextension: 'My Weight Watch Extension'
dev:
scheme: 'MyWeight Dev'
configuration: Release
output: 'MyWeight Dev'
sign:
signingCertificate: 'Apple Distribution: Diogo Tridapalli'
provisioningProfiles:
com.diogot.health.My-Weight.dev: 'My Weight Dev'
com.diogot.health.My-Weight.dev.watchkitapp: 'My Weight Watch Dev'
com.diogot.health.My-Weight.dev.watchkitapp.watchkitextension: 'My Weight Watch Extension Dev'