-
Notifications
You must be signed in to change notification settings - Fork 45
/
bitrise.yml
100 lines (100 loc) · 2.81 KB
/
bitrise.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
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
---
format_version: '8'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: react-native
trigger_map:
- push_branch: "*"
workflow: primary
- pull_request_source_branch: "*"
workflow: primary
workflows:
deploy:
steps:
- activate-ssh-key@4:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@6: {}
- restore-cocoapods-cache@1: {}
- restore-npm-cache@1: {}
- restore-gradle-cache@1: {}
- yarn@0:
inputs:
- cache_local_deps: 'yes'
- verbose_log: 'yes'
- command: install
- cocoapods-install@1:
inputs:
- source_root_path: "$BITRISE_SOURCE_DIR/ios"
- certificate-and-profile-installer@1: {}
- xcode-archive@4:
inputs:
- project_path: "$BITRISE_PROJECT_PATH"
- scheme: "$BITRISE_SCHEME"
- export_method: "$BITRISE_EXPORT_METHOD"
- team_id: "$BITRISE_TEAM"
- compile_bitcode: 'no'
- upload_bitcode: 'no'
- force_code_sign_identity: "$BITRISE_CODE_SIGNING_IDENTITY"
- force_provisioning_profile_specifier: ''
- force_provisioning_profile: "$BITRISE_PROFILE_ID"
- verbose_log: 'no'
- configuration: Debug
- xcode-test@4:
inputs:
- generate_code_coverage_files: 'yes'
- should_build_before_test: 'no'
- test_repetition_mode: up_until_maximum_repetitions
- output_tool: xcodebuild
- xcodebuild_test_options: "-parallel-testing-enabled=YES -parallel-testing-worker-count=3"
- install-missing-android-tools@3:
inputs:
- gradlew_path: "$PROJECT_LOCATION/gradlew"
- android-build@1:
inputs:
- project_location: "$PROJECT_LOCATION"
- save-npm-cache@1: {}
- save-cocoapods-cache@1: {}
- save-gradle-cache@1: {}
- deploy-to-bitrise-io@2: {}
primary:
steps:
- activate-ssh-key@4:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@6: {}
- script@1:
title: Do anything with Script step
- yarn@0:
inputs:
- command: install
- yarn@0:
inputs:
- command: test
- deploy-to-bitrise-io@2: {}
app:
envs:
- opts:
is_expand: false
PROJECT_LOCATION: android
- opts:
is_expand: false
MODULE: app
- opts:
is_expand: false
VARIANT: ''
- opts:
is_expand: false
BITRISE_PROJECT_PATH: ios/TodoMVC.xcworkspace
- opts:
is_expand: false
BITRISE_SCHEME: TodoMVC
- opts:
is_expand: false
BITRISE_EXPORT_METHOD: development
- opts:
is_expand: false
BITRISE_TEAM: 72SA8V3WYL
- opts:
is_expand: false
BITRISE_PROFILE_ID: b103a1f0-1f51-4d53-a41f-c08719676e94
- opts:
is_expand: false
BITRISE_CODE_SIGNING_IDENTITY: 'iPhone Developer: Dev Portal Bot Bitrise (E89JV3W9K4)'