-
Notifications
You must be signed in to change notification settings - Fork 4
96 lines (79 loc) · 2.47 KB
/
pipeline.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
name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check-code-style:
name: Check code style
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Decrypt and validate decrypted data
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: ./.github/workflows/decrypt-and-validate-data.sh
- name: Run spotless
run: ./gradlew app:spotlessCheck
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Decrypt and validate decrypted data
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: ./.github/workflows/decrypt-and-validate-data.sh
- name: Run tests
run: ./gradlew app:test
build-apks:
name: Build and store apk files
needs: [ check-code-style, run-tests ]
runs-on: ubuntu-latest
strategy:
matrix:
include:
- command: assembleGplayDebug
fileName: app-gplay-debug.apk
filePath: ./app/build/outputs/apk/gplay/debug/app-gplay-debug.apk
- command: assembleGplayRelease
fileName: app-gplay-release.apk
filePath: ./app/build/outputs/apk/gplay/release/app-gplay-release.apk
- command: assembleFdroidDebug
fileName: app-fdroid-debug.apk
filePath: ./app/build/outputs/apk/fdroid/debug/app-fdroid-debug.apk
- command: assembleFdroidRelease
fileName: app-fdroid-release.apk
filePath: ./app/build/outputs/apk/fdroid/release/app-fdroid-release.apk
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Decrypt and validate decrypted data
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: ./.github/workflows/decrypt-and-validate-data.sh
- name: Build
run: |
./gradlew app:${{ matrix.command }}
- name: Store APK file
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.fileName }}
path: ${{ matrix.filePath }}