-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (64 loc) · 2.09 KB
/
android.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
name: Android CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
google_service_json: ${{ secrets.GOOGLE_SERVICE_JSON }}
dialogflow_secret_json: ${{ secrets.DIALOGFLOW_SECRET_JSON }}
- name: Build with gradle
run: ./gradlew assembleDebug
- name: Upload APK
uses: actions/upload-artifact@v3
with:
name: apk
path: |
app/build/outputs/apk/ads/debug/app-ads-debug.apk
app/build/outputs/apk/noAds/debug/app-noAds-debug.apk
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
google_service_json: ${{ secrets.GOOGLE_SERVICE_JSON }}
dialogflow_secret_json: ${{ secrets.DIALOGFLOW_SECRET_JSON }}
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Run lint
run: ./gradlew lint
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
google_service_json: ${{ secrets.GOOGLE_SERVICE_JSON }}
dialogflow_secret_json: ${{ secrets.DIALOGFLOW_SECRET_JSON }}
- name: Run unit tests
run: ./gradlew test
android-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
with:
google_service_json: ${{ secrets.GOOGLE_SERVICE_JSON }}
dialogflow_secret_json: ${{ secrets.DIALOGFLOW_SECRET_JSON }}
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
script: ./gradlew connectedCheck