forked from Meorge/TimeZonePicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitrise.yml
51 lines (48 loc) · 1.3 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
---
format_version: '6'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: ios
trigger_map:
- pull_request_source_branch: "*"
workflow: primary
workflows:
primary:
steps:
- activate-ssh-key:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone: {}
- cache-pull: {}
- script:
title: Pod Lint
inputs:
- content: |-
#!/usr/bin/env bash
# fail if any commands fails
set -e
# debug log
set -x
pod lib lint --verbose --fail-fast
pod repo update
- script:
inputs:
- content: |-
#!/usr/bin/env bash
# fail if any commands fails
set -e
# debug log
set -x
cd TimeZonePickerExample && pod install
xcodebuild -workspace TimeZonePickerExample.xcworkspace -scheme TimeZonePickerExample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
title: XCode Build
- cache-push: {}
app:
envs:
- opts:
is_expand: false
BITRISE_PROJECT_PATH: TimeZonePickerExample/TimeZonePickerExample.xcworkspace
- opts:
is_expand: false
BITRISE_SCHEME: TimeZonePickerExample
- opts:
is_expand: false
BITRISE_EXPORT_METHOD: development