-
Notifications
You must be signed in to change notification settings - Fork 18
45 lines (37 loc) · 1.23 KB
/
Screenshots.yml
File metadata and controls
45 lines (37 loc) · 1.23 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
name: Making screenshots
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
device: [ "pixel_2", "pixel_6_pro" ]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Overriding gradle.properties for CI
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
- 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: Executing tests for screenshot making
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 34
arch: x86_64
profile: ${{ matrix.device }}
disable-animations: true
script: fastlane screenshots
- name: Save screenshots
uses: actions/upload-artifact@v4
with:
name: screenshots_${{ matrix.device }}
path: fastlane/metadata/android