-
Notifications
You must be signed in to change notification settings - Fork 11
204 lines (179 loc) · 8.11 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# 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
- name: setup python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: install python dependencies
run: pip install --upgrade pip conan
- run: |
conan config install .github/conan
conan profile list
conan profile show
- run: conan remote add odr https://artifactory.opendocument.app/artifactory/api/conan/conan
- run: conan graph info pdf2htmlEX --profile=android-21-armv8 --build=missing --format=html > conangraph.html
- run: ./gradlew lintRelease publishToMavenLocal
- name: Artifact library-lint-report
uses: actions/upload-artifact@v4
with:
name: library-lint-report
path: pdf2htmlEX/build/reports/lint-results-release.html
if-no-files-found: error
- name: Artifact maven-local
uses: actions/upload-artifact@v4
with:
name: maven-local
path: ~/.m2
if-no-files-found: error
compression-level: 0
include-hidden-files: true
- name: Artifact conangraph.html
uses: actions/upload-artifact@v4
with:
name: conangraph.html
path: conangraph.html
if-no-files-found: error
- name: Artifact dotconan2
uses: actions/upload-artifact@v4
with:
name: dotconan2
path: ~/.conan2
if-no-files-found: error
compression-level: 0
include-hidden-files: true
emulator:
needs: build
runs-on: ubuntu-22.04
name: android-${{ matrix.emulator.api_level }} on ${{ matrix.emulator.arch }} (${{ matrix.emulator.api_type_target }})
strategy:
fail-fast: false
matrix:
emulator:
# Emulator matrix generated by ci-scripts/emulator_matrix_generator.py
# @TODO: fix android-35
# - {'api_level': 35, 'api_type_target': 'google_apis', 'arch': 'x86_64'}
- {'api_level': 34, 'api_type_target': 'default', '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: setup python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- run: pip install --upgrade pip conan adbPullAs selenium Pillow
- uses: actions/download-artifact@v4
with:
name: dotconan2
path: ~/.conan2
- 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: Keep APK installed after test run
run: echo "android.injected.androidTest.leaveApksInstalledAfterRun=true" >> gradle.properties
- 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: 7G
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
adbPullAs app.opendocument.android.pdf2htmlex.test /data/data/app.opendocument.android.pdf2htmlex.test/cache/pdf2htmlEX/output-htmls testResults
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
- run: python ci-scripts/browser_tests.py --html-dir testResults/output-htmls --png-destination-dir testResults/pngs --reference-png-dir test/reference_pngs
- 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