-
Notifications
You must be signed in to change notification settings - Fork 1
80 lines (76 loc) · 2.5 KB
/
Copy pathmain.yml
File metadata and controls
80 lines (76 loc) · 2.5 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
name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
FACTCHECK_API_KEY: ${{secrets.FACTCHECK_API_KEY}}
FACTCHECK_KEYSTORE_FILE: test
FACTCHECK_KEY_ALIAS: test
FACTCHECK_KEYSTORE_PASSWORD: test
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'liberica'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6
with:
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
validate-wrappers: true
- name: Check
run: ./gradlew check
ui-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'liberica'
- 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: Setup Gradle
uses: gradle/actions/setup-gradle@v6
with:
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
validate-wrappers: true
- name: AVD cache
uses: actions/cache@v6
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: avd-35
- name: create AVD and generate snapshot for caching
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2.38.0
with:
api-level: 35
target: google_apis
arch: x86_64
force-avd-creation: false
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -no-metrics
disable-animations: false
script: echo "Generated AVD snapshot for caching."
- name: Run tests
uses: reactivecircus/android-emulator-runner@v2.38.0
with:
script: ./gradlew connectedDebugAndroidTest
arch: x86_64
target: google_apis
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -no-metrics
disable-animations: true
api-level: 35