-
-
Notifications
You must be signed in to change notification settings - Fork 30
164 lines (149 loc) · 5.38 KB
/
harness-android.yml
File metadata and controls
164 lines (149 loc) · 5.38 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
name: Harness Android
concurrency:
group: harness-android-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != 'main' }}
on:
workflow_dispatch:
inputs:
device_api_level:
description: "Android API level for the emulator"
required: false
default: "35"
type: string
device_arch:
description: "Device architecture (x86_64, arm64-v8a)"
required: false
default: "x86_64"
type: choice
options:
- x86_64
- arm64-v8a
device_profile:
description: "Device profile"
required: false
default: "pixel_7"
type: string
avd_name:
description: "AVD name"
required: false
default: "Pixel_8_API_35"
type: string
push:
branches:
- main
paths:
- ".github/workflows/harness-android.yml"
- "example/android/**"
- "packages/react-native-nitro-image/android/**"
- "packages/react-native-nitro-web-image/android/**"
- "packages/react-native-nitro-image/src/**"
- "packages/react-native-nitro-web-image/src/**"
- "packages/react-native-nitro-image/nitrogen/**"
- "packages/react-native-nitro-web-image/nitrogen/**"
- "**/bun.lock"
- "**/react-native.config.js"
- "example/__tests__/**"
- "example/rn-harness.config.mjs"
pull_request:
paths:
- ".github/workflows/harness-android.yml"
- "example/android/**"
- "packages/react-native-nitro-image/android/**"
- "packages/react-native-nitro-web-image/android/**"
- "packages/react-native-nitro-image/src/**"
- "packages/react-native-nitro-web-image/src/**"
- "packages/react-native-nitro-image/nitrogen/**"
- "packages/react-native-nitro-web-image/nitrogen/**"
- "**/bun.lock"
- "**/react-native.config.js"
- "example/__tests__/**"
- "example/rn-harness.config.mjs"
env:
DEVICE_API_LEVEL: ${{ github.event.inputs.device_api_level || '35' }}
DEVICE_ARCH: ${{ github.event.inputs.device_arch || 'x86_64' }}
DEVICE_PROFILE: ${{ github.event.inputs.device_profile || 'pixel_7' }}
AVD_NAME: ${{ github.event.inputs.avd_name || 'Pixel_8_API_35' }}
jobs:
harness_android:
name: Harness Android
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: recursive
- name: Reclaim disk space
uses: AdityaGarg8/remove-unwanted-software@v5
with:
remove-dotnet: true
remove-haskell: true
remove-codeql: true
remove-docker-images: true
- uses: oven-sh/setup-bun@v2
- name: Install npm dependencies
run: bun install
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: 17
java-package: jdk
- name: Restore Gradle cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
example/android/.gradle
example/android/app/.cxx
key: ${{ runner.os }}-gradle-${{ env.DEVICE_ARCH }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-${{ env.DEVICE_ARCH }}-
${{ runner.os }}-gradle-
- name: Build Android app
working-directory: example/android
run: ./gradlew :app:assembleDebug --no-daemon --build-cache -PreactNativeArchitectures=${{ env.DEVICE_ARCH }}
- 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
ls /dev/kvm
- name: AVD cache
uses: actions/cache@v4
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: avd-${{ env.DEVICE_API_LEVEL }}-${{ env.DEVICE_ARCH }}
- name: Create AVD and generate snapshot for caching
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ env.DEVICE_API_LEVEL }}
arch: ${{ env.DEVICE_ARCH }}
profile: ${{ env.DEVICE_PROFILE }}
disk-size: 1G
heap-size: 1G
force-avd-creation: false
avd-name: ${{ env.AVD_NAME }}
disable-animations: true
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
script: echo "Generated AVD snapshot for caching."
- name: Run Harness E2E tests
uses: reactivecircus/android-emulator-runner@v2
with:
working-directory: example
api-level: ${{ env.DEVICE_API_LEVEL }}
arch: ${{ env.DEVICE_ARCH }}
force-avd-creation: false
avd-name: ${{ env.AVD_NAME }}
disable-animations: true
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
script: |
adb install -r "./android/app/build/outputs/apk/debug/app-debug.apk"
bun run test:harness --harnessRunner android
- name: Stop Gradle Daemon
working-directory: example/android
run: ./gradlew --stop