-
Notifications
You must be signed in to change notification settings - Fork 11
149 lines (134 loc) · 6.15 KB
/
build.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
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
# MIT License
#
# Copyright (c) 2021 - 2024 ViliusSutkus89.com
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
name: build
on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/build.yml'
permissions:
actions: none
checks: none
contents: none
deployments: none
issues: none
packages: none
pull-requests: none
repository-projects: none
security-events: none
statuses: none
jobs:
build:
if: "!contains(github.event.head_commit.message, '[SkipCI]')"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- uses: android-actions/setup-android@v3
- run: ./gradlew lintRelease publishToMavenLocal
- uses: actions/upload-artifact@v4
with:
name: library-lint-report
path: pdf2htmlEX/build/reports/lint-results-release.html
if-no-files-found: error
- uses: actions/upload-artifact@v4
with:
name: maven-local
path: ~/.m2
if-no-files-found: error
emulator:
runs-on: ubuntu-22.04
name: android-${{ matrix.emulator.api_level }} on ${{ matrix.emulator.arch }} (${{ matrix.emulator.api_type_target }})
needs: build
strategy:
fail-fast: false
matrix:
emulator:
# Emulator matrix generated by ci-scripts/emulator_matrix_generator.py
- {'api_level': 34, 'api_type_target': 'aosp_atd', 'arch': 'x86_64'}
- {'api_level': 33, 'api_type_target': 'aosp_atd', 'arch': 'x86_64'}
- {'api_level': 32, 'api_type_target': 'aosp_atd', 'arch': 'x86_64'}
- {'api_level': 31, 'api_type_target': 'aosp_atd', 'arch': 'x86_64'}
- {'api_level': 30, 'api_type_target': 'aosp_atd', 'arch': 'x86_64'}
- {'api_level': 30, 'api_type_target': 'aosp_atd', 'arch': 'x86'}
- {'api_level': 29, 'api_type_target': 'default', 'arch': 'x86_64'}
- {'api_level': 29, 'api_type_target': 'default', 'arch': 'x86'}
- {'api_level': 28, 'api_type_target': 'default', 'arch': 'x86_64'}
- {'api_level': 28, 'api_type_target': 'default', 'arch': 'x86'}
- {'api_level': 27, 'api_type_target': 'default', 'arch': 'x86_64'}
- {'api_level': 27, 'api_type_target': 'default', 'arch': 'x86'}
- {'api_level': 26, 'api_type_target': 'default', 'arch': 'x86_64'}
- {'api_level': 26, 'api_type_target': 'default', 'arch': 'x86'}
- {'api_level': 25, 'api_type_target': 'default', 'arch': 'x86_64'}
- {'api_level': 25, 'api_type_target': 'default', 'arch': 'x86'}
- {'api_level': 24, 'api_type_target': 'default', 'arch': 'x86_64'}
- {'api_level': 24, 'api_type_target': 'default', 'arch': 'x86'}
- {'api_level': 23, 'api_type_target': 'default', 'arch': 'x86_64'}
- {'api_level': 23, 'api_type_target': 'default', 'arch': 'x86'}
- {'api_level': 22, 'api_type_target': 'default', 'arch': 'x86_64'}
- {'api_level': 22, 'api_type_target': 'default', 'arch': 'x86'}
- {'api_level': 21, 'api_type_target': 'default', 'arch': 'x86_64'}
- {'api_level': 21, 'api_type_target': 'default', 'arch': 'x86'}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- uses: android-actions/setup-android@v3
- 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
- uses: reactivecircus/android-emulator-runner@v2
with:
force-avd-creation: false
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -no-snapshot-save
sdcard-path-or-size: 1G
disk-size: 8G
api-level: ${{ matrix.emulator.api_level }}
arch: ${{ matrix.emulator.arch }}
target: ${{ matrix.emulator.api_type_target }}
script: |
mkdir -p testResults/screenshots
adb logcat > testResults/logcat.txt &
adb shell screencap /data/local/tmp/beforeTests.png
adb pull /data/local/tmp/beforeTests.png testResults/screenshots/
./gradlew connectedCheck || touch sorry_but_tests_are_failing
adb pull /sdcard/Pictures/screenshots testResults/ || true
adb shell screencap /data/local/tmp/afterTests.png
adb pull /data/local/tmp/afterTests.png testResults/screenshots/
mv pdf2htmlEX/build/reports/androidTests/connected testResults/
mv pdf2htmlEX/build/outputs/androidTest-results testResults/
test ! -f sorry_but_tests_are_failing
- uses: actions/upload-artifact@v4
if: always()
with:
name: testResults-${{ matrix.emulator.api_level }}-${{ matrix.emulator.arch }}-${{ matrix.emulator.api_type_target }}
path: testResults
if-no-files-found: error