forked from mapbox/mapbox-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitrise.yml
More file actions
182 lines (182 loc) · 6.33 KB
/
Copy pathbitrise.yml
File metadata and controls
182 lines (182 loc) · 6.33 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
---
format_version: 1.0.0
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
trigger_map:
- pattern: scheduled
is_pull_request_allowed: false
workflow: scheduled
- pattern: gh-pages
is_pull_request_allowed: false
workflow: gh-pages
- pattern: "*"
is_pull_request_allowed: true
workflow: primary
workflows:
gh-pages:
steps:
- slack:
title: Post to Slack
run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- webhook_url: "$SLACK_HOOK_URL"
- channel: "#gl-bots"
- from_username: 'Bitrise Android'
- from_username_on_error: 'Bitrise Android'
- message: '<${BITRISE_BUILD_URL}|Build #${BITRISE_BUILD_NUMBER}>
for <https://github.com/mapbox/mapbox-java/compare/${BITRISE_GIT_BRANCH}|mapbox/mapbox-java@${BITRISE_GIT_BRANCH}>
by ${GIT_CLONE_COMMIT_COMMITER_NAME}
passed'
- message_on_error: '<${BITRISE_BUILD_URL}|Build #${BITRISE_BUILD_NUMBER}>
for <https://github.com/mapbox/mapbox-java/compare/${BITRISE_GIT_BRANCH}|mapbox/mapbox-java@${BITRISE_GIT_BRANCH}>
by ${GIT_CLONE_COMMIT_COMMITER_NAME}
failed'
- icon_url: https://bitrise-public-content-production.s3.amazonaws.com/slack/bitrise-slack-icon-128.png
- icon_url_on_error: https://bitrise-public-content-production.s3.amazonaws.com/slack/bitrise-slack-error-icon-128.png
primary:
steps:
- script:
title: Check for skipping CI
inputs:
- content: |-
#!/bin/bash
if [[ -n "$(echo $GIT_CLONE_COMMIT_MESSAGE_SUBJECT | sed -n '/\[skip ci\]/p')" ||
-n "$(echo $GIT_CLONE_COMMIT_MESSAGE_SUBJECT | sed -n '/\[ci skip\]/p')" ||
-n "$(echo $GIT_CLONE_COMMIT_MESSAGE_BODY | sed -n 's/\[skip ci\]/p')" ||
-n "$(echo $GIT_CLONE_COMMIT_MESSAGE_BODY | sed -n 's/\[ci skip\]/p')" ]]; then
envman add --key SKIPCI --value true
else
envman add --key SKIPCI --value false
fi
- script:
title: Build Java Services
inputs:
- content: |-
#!/bin/bash
cd libjava
./gradlew assembleRelease
- is_debug: 'yes'
- script:
title: Build Android Services
inputs:
- content: |-
#!/bin/bash
cd libandroid
./gradlew assembleRelease
- is_debug: 'yes'
- script:
title: Run Java Project Unit Tests
inputs:
- content: |-
#!/bin/bash
cd libjava
./gradlew test
- is_debug: 'yes'
- script:
title: Run Android Project Unit Tests
inputs:
- content: |-
#!/bin/bash
cd libandroid
./gradlew test
- is_debug: 'yes'
- slack:
title: Post to Slack
run_if: '{{enveq "SKIPCI" "false"}}'
inputs:
- webhook_url: "$SLACK_HOOK_URL"
- channel: "#gl-bots"
- from_username: 'Bitrise Android'
- from_username_on_error: 'Bitrise Android'
- message: '<${BITRISE_BUILD_URL}|Build #${BITRISE_BUILD_NUMBER}>
for <https://github.com/mapbox/mapbox-java/compare/${BITRISE_GIT_BRANCH}|mapbox/mapbox-java@${BITRISE_GIT_BRANCH}>
by ${GIT_CLONE_COMMIT_COMMITER_NAME}
passed'
- message_on_error: '<${BITRISE_BUILD_URL}|Build #${BITRISE_BUILD_NUMBER}>
for <https://github.com/mapbox/mapbox-java/compare/${BITRISE_GIT_BRANCH}|mapbox/mapbox-java@${BITRISE_GIT_BRANCH}>
by ${GIT_CLONE_COMMIT_COMMITER_NAME}
failed'
- icon_url: https://bitrise-public-content-production.s3.amazonaws.com/slack/bitrise-slack-icon-128.png
- icon_url_on_error: https://bitrise-public-content-production.s3.amazonaws.com/slack/bitrise-slack-error-icon-128.png
scheduled:
steps:
- script:
title: Install Linux Dependencies
inputs:
- content: |-
#!/bin/bash
apt-get install -y pkg-config python-pip python-dev build-essential
pip install awscli
- script:
title: Fetch GPG Secring For SDK Signing
inputs:
- content: |-
#!/bin/bash
aws s3 cp s3://mapbox/android/signing-credentials/secring.gpg secring.gpg
opts:
is_expand: true
- script:
title: Inject Signing And Publishing Credentials To Java Services
inputs:
- content: |-
#!/bin/bash
echo "NEXUS_USERNAME=$PUBLISH_NEXUS_USERNAME
NEXUS_PASSWORD=$PUBLISH_NEXUS_PASSWORD
signing.keyId=$SIGNING_KEYID
signing.password=$SIGNING_PASSWORD
signing.secretKeyRingFile=../../secring.gpg" >> libjava/gradle.properties
opts:
is_expand: true
- script:
title: Inject Signing And Publishing Credentials To Android Services
inputs:
- content: |-
#!/bin/bash
echo "NEXUS_USERNAME=$PUBLISH_NEXUS_USERNAME
NEXUS_PASSWORD=$PUBLISH_NEXUS_PASSWORD
signing.keyId=$SIGNING_KEYID
signing.password=$SIGNING_PASSWORD
signing.secretKeyRingFile=../../secring.gpg" >> libandroid/gradle.properties
opts:
is_expand: true
- script:
title: Build Java Services
inputs:
- content: |-
#!/bin/bash
cd libjava
./gradlew assembleRelease
- script:
title: Build Android Services
inputs:
- content: |-
#!/bin/bash
cd libandroid
./gradlew assembleRelease
- script:
title: Run Java Project Unit Tests
inputs:
- content: |-
#!/bin/bash
cd libjava
./gradlew test
- script:
title: Run Android Project Unit Tests
inputs:
- content: |-
#!/bin/bash
cd libandroid
./gradlew test
- script:
title: Publish Java Services To Maven Central
inputs:
- content: |-
#!/bin/bash
cd libjava;
./gradlew uploadArchives
- script:
title: Publish Android Services To Maven Central
inputs:
- content: |-
#!/bin/bash
cd libandroid;
./gradlew uploadArchives