-
Notifications
You must be signed in to change notification settings - Fork 181
318 lines (315 loc) · 14.2 KB
/
internal.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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
name: Build and publish Beta
on:
push:
branches:
- 'dev'
concurrency:
group: "deploy"
jobs:
validate_gradle_wrapper:
name: "Validate gradle wrapper"
uses: ./.github/workflows/call-validate-gradle-wrapper.yml
invalidate_gradle_cache:
name: Update gradle cache
runs-on: ubuntu-latest
needs: [ validate_gradle_wrapper ]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
submodules: 'recursive'
- name: Set up JDK 1.17
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4
with:
distribution: 'temurin'
java-version: '17'
- name: Build internal
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # v3
with:
cache-read-only: false
arguments: testDebugUnitTest desktopTest detekt lint
build_number:
name: Generate build number
runs-on: ubuntu-latest
needs: [ validate_gradle_wrapper ]
outputs:
number: ${{ steps.build_out.outputs.number }}
number_wearos: ${{ steps.wearos_out.outputs.number_wearos }}
steps:
- name: Generate build number
id: buildnumber
uses: onyxmueller/build-tag-number@4a0c81c9af350d967032d49204c83c38e6b0c8e4 # v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Generate build number for WearOS
id: buildnumber_wearos
uses: onyxmueller/build-tag-number@4a0c81c9af350d967032d49204c83c38e6b0c8e4 # v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: 'Set output for simple build'
id: build_out
run: |
echo "number=${{ steps.buildnumber.outputs.build_number }}" >> $GITHUB_OUTPUT
- name: 'Set output for WearOS'
id: wearos_out
run: |
echo "number_wearos=${{ steps.buildnumber_wearos.outputs.build_number }}" >> $GITHUB_OUTPUT
create_internal_baseline:
name: "Create baseline profile"
needs: build_number
uses: ./.github/workflows/call-create-baseline.yml
with:
BUILD_VARIANT_NAME: "internal"
build_internal_release:
name: Build Internal AAB and APK
runs-on: ubuntu-latest
needs: [ create_internal_baseline, build_number ]
strategy:
matrix:
target: [ "gh_gms", "gh_nogms", "googleplay" ]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
submodules: 'recursive'
- uses: actions/download-artifact@d0ce8fd1167ed839810201de977912a090ab10a7
name: "Download ${{ needs.create_internal_baseline.outputs.BUILD_VARIANT_NAME }} baseline file"
with:
name: ${{ needs.create_internal_baseline.outputs.BASELINE_FILE_ID }}
path: ${{ needs.create_internal_baseline.outputs.BASELINE_FILE_PATH }}
- name: Set up JDK 1.17
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4
with:
distribution: 'temurin'
java-version: '17'
- name: 'Set variables'
id: vars
run: |
export $(cat .github/workflows/version.env | xargs)
echo "major_version=${MAJOR_VERSION}" >> $GITHUB_OUTPUT
echo "minor_version=${{ needs.build_number.outputs.number }}" >> $GITHUB_OUTPUT
- name: Build internal release
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
ORG_GRADLE_PROJECT_version_code: ${{ steps.vars.outputs.minor_version }}
ORG_GRADLE_PROJECT_version_name: "${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}"
ORG_GRADLE_PROJECT_countly_url: ${{ secrets.COUNTLY_URL_PROD }}
ORG_GRADLE_PROJECT_countly_app_key: ${{ secrets.COUNTLY_APP_KEY_PROD }}
run: |
export $(cat .github/workflows/targets/${{ matrix.target }}.env | xargs)
./gradlew :instances:android:app:assembleInternal :instances:android:app:bundleInternal
- name: Sign AAB
id: sign_aab
uses: r0adkll/sign-android-release@349ebdef58775b1e0d8099458af0816dc79b6407 # v1
with:
releaseDirectory: instances/android/app/build/outputs/bundle/internal
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_ALIAS_PASSWORD }}
env:
BUILD_TOOLS_VERSION: "34.0.0"
- name: Sign APK
id: sign_apk
uses: r0adkll/sign-android-release@349ebdef58775b1e0d8099458af0816dc79b6407 # v1
with:
releaseDirectory: instances/android/app/build/outputs/apk/internal
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_ALIAS_PASSWORD }}
env:
BUILD_TOOLS_VERSION: "34.0.0"
- name: Copy artifacts
id: artifacts_copy
run: |
mkdir artifacts
cp ${{ steps.sign_aab.outputs.signedReleaseFile }} artifacts/flipper-zero-${{ matrix.target }}.aab
cp ${{ steps.sign_apk.outputs.signedReleaseFile }} artifacts/flipper-zero-${{ matrix.target }}.apk
cp instances/android/app/build/outputs/mapping/internal/mapping.txt artifacts/mapping-${{ matrix.target }}.txt
echo "path=artifacts/" >> $GITHUB_OUTPUT
- name: Upload Artifacts
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
with:
name: artifacts-${{ matrix.target }}
path: ${{ steps.artifacts_copy.outputs.path }}
build_internal_release_gms_wearos:
name: Build Internal AAB and APK WearOS
runs-on: ubuntu-latest
needs: build_number
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
submodules: 'recursive'
- name: Set up JDK 1.17
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4
with:
distribution: 'temurin'
java-version: '17'
- name: 'Set variables'
id: vars
run: |
export $(cat .github/workflows/version.env | xargs)
echo "major_version=${MAJOR_VERSION}" >> $GITHUB_OUTPUT
echo "minor_version=${{ needs.build_number.outputs.number_wearos }}" >> $GITHUB_OUTPUT
- name: Build internal release
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
ORG_GRADLE_PROJECT_version_code: ${{ steps.vars.outputs.minor_version }}
ORG_GRADLE_PROJECT_version_name: "${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}"
run: |
export $(cat .github/workflows/targets/wearos.env | xargs)
./gradlew :instances:wearable:assembleInternal :instances:wearable:bundleInternal
- name: Sign Wear AAB
id: sign_wear_aab
uses: r0adkll/sign-android-release@349ebdef58775b1e0d8099458af0816dc79b6407 # v1
with:
releaseDirectory: instances/wearable/build/outputs/bundle/internal
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_ALIAS_PASSWORD }}
env:
BUILD_TOOLS_VERSION: "34.0.0"
- name: Sign Wear APK
id: sign_wear_apk
uses: r0adkll/sign-android-release@349ebdef58775b1e0d8099458af0816dc79b6407 # v1
with:
releaseDirectory: instances/wearable/build/outputs/apk/internal
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_ALIAS_PASSWORD }}
env:
BUILD_TOOLS_VERSION: "34.0.0"
- name: Copy artifacts
id: artifacts_copy
run: |
mkdir artifacts
cp ${{ steps.sign_wear_aab.outputs.signedReleaseFile }} artifacts/flipper-zero-wearos.aab
cp ${{ steps.sign_wear_apk.outputs.signedReleaseFile }} artifacts/flipper-zero-wearos.apk
cp instances/wearable/build/outputs/mapping/internal/mapping.txt artifacts/mapping-wearos.txt
echo "path=artifacts/" >> $GITHUB_OUTPUT
- name: Upload Artifacts
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
with:
name: artifacts-wearos
path: ${{ steps.artifacts_copy.outputs.path }}
upload_to_github:
name: Upload to Github Releases
runs-on: ubuntu-latest
needs: [ build_internal_release, build_internal_release_gms_wearos, build_number ]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
submodules: 'recursive'
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
id: download-gh_gms
with:
name: artifacts-gh_gms
path: download/gh_gms
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
id: download-gh_nogms
with:
name: artifacts-gh_nogms
path: download/gh_nogms
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
id: download-googleplay
with:
name: artifacts-googleplay
path: download/googleplay
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
id: download-wearos
with:
name: artifacts-wearos
path: download/wearos
- name: 'Set variables'
id: vars
run: |
export $(cat .github/workflows/version.env | xargs)
echo "major_version=${MAJOR_VERSION}" >> $GITHUB_OUTPUT
echo "minor_version=${{ needs.build_number.outputs.number }}" >> $GITHUB_OUTPUT
- name: 'Copy artifacts'
id: artifacts_copy
run: |
mkdir artifacts
cp ${{steps.download-gh_gms.outputs.download-path}}/* artifacts/
cp ${{steps.download-gh_nogms.outputs.download-path}}/* artifacts/
cp ${{steps.download-googleplay.outputs.download-path}}/* artifacts/
cp ${{steps.download-wearos.outputs.download-path}}/* artifacts/
echo "path=artifacts/" >> $GITHUB_OUTPUT
- name: Install zip
uses: montudor/action-zip@a8e75c9faefcd80fac3baf53ef40b9b119d5b702 # v1
- name: Prepare mapping
id: mappings
run: |
mkdir mappings
for target in "gh_gms" "gh_nogms" "googleplay" "wearos"; do \
mv "${{ steps.artifacts_copy.outputs.path }}/mapping-${target}.txt" mappings/ ; done
zip -qq -r mappings.zip mappings
echo "archive=mappings.zip" >> $GITHUB_OUTPUT
- name: Prepare other builds
id: other
run: |
mkdir other
mv "${{ steps.artifacts_copy.outputs.path }}/flipper-zero-googleplay.apk" other/
mv "${{ steps.artifacts_copy.outputs.path }}/flipper-zero-wearos.apk" other/
mv ${{ steps.artifacts_copy.outputs.path }}/*.aab other/
zip -qq -r other.zip other
echo "archive=other.zip" >> $GITHUB_OUTPUT
- name: Artefact build beautifier
id: beautifier
run: |
mv ${{ steps.artifacts_copy.outputs.path }}/flipper-zero-gh_gms.apk ${{ steps.artifacts_copy.outputs.path }}/flipper-zero-gms-${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}.apk
mv ${{ steps.artifacts_copy.outputs.path }}/flipper-zero-gh_nogms.apk ${{ steps.artifacts_copy.outputs.path }}/flipper-zero-nogms-${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}.apk
- name: Create internal Release
id: create_internal_release
uses: softprops/action-gh-release@e7a8f85e1c67a31e6ed99a94b41bd0b71bbee6b8 # v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
${{ steps.mappings.outputs.archive }}
${{ steps.other.outputs.archive }}
${{ steps.artifacts_copy.outputs.path }}/flipper-zero-gms-${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}.apk
${{ steps.artifacts_copy.outputs.path }}/flipper-zero-nogms-${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}.apk
tag_name: ${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}
name: Flipper App ${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}
draft: false
prerelease: true
upload_to_playstore:
name: Upload to Play Store
runs-on: ubuntu-latest
needs: [ build_internal_release ]
# Off while we experiment with the bug in Kotlin Compile and release the beta manually
if: false
steps:
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
id: download-googleplay
with:
name: artifacts-googleplay
- name: Upload to Play Store
uses: r0adkll/upload-google-play@935ef9c68bb393a8e6116b1575626a7f5be3a7fb # v1.1.3
with:
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_PUBLISHER_JSON }}
packageName: com.flipperdevices.app
releaseFiles: ${{steps.download-googleplay.outputs.download-path}}/flipper-zero-googleplay.aab
track: beta
mappingFile: ${{steps.download-googleplay.outputs.download-path}}/mapping-googleplay.txt
upload_to_playstore_wearos:
name: Upload Wear OS to Play Store
runs-on: ubuntu-latest
needs: [ build_internal_release_gms_wearos ]
# Off while we experiment with the bug in Kotlin Compile and release the beta manually
if: false
steps:
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
id: download-wearos
with:
name: artifacts-wearos
- name: Upload to Play Store Wear OS
uses: r0adkll/upload-google-play@935ef9c68bb393a8e6116b1575626a7f5be3a7fb # v1.1.3
with:
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_PUBLISHER_JSON }}
packageName: com.flipperdevices.app
releaseFiles: ${{steps.download-wearos.outputs.download-path}}/flipper-zero-wearos.aab
track: wear:beta
mappingFile: ${{steps.download-wearos.outputs.download-path}}/mapping-wearos.txt