-
Notifications
You must be signed in to change notification settings - Fork 2
65 lines (55 loc) · 1.55 KB
/
runUiTests.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
name: Run UI Tests
on: push
jobs:
run-ui-test:
name: run tests
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
prepareUI: |
export DISPLAY=:99.0
Xvfb -ac :99 -screen 0 1920x1080x24 &
sleep 10
mkdir -p build/reports
runTests: |
export DISPLAY=:99.0
./gradlew :test
url: http://127.0.0.1:8082
reportName: ui-test-fails-report-linux
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Setup Java
uses: actions/[email protected]
with:
distribution: zulu
java-version: 17
- name: Setup FFmpeg
uses: FedericoCarboni/setup-ffmpeg@v2
with:
# Not strictly necessary, but it may prevent rate limit
# errors especially on GitHub-hosted macos machines.
token: ${{ secrets.GITHUB_TOKEN }}
- name: Clean
run: ./gradlew :clean
- name: Prepare UI
run: ${{ matrix.prepareUI }}
- name: Run tests
run: ${{ matrix.runTests }}
- name: Move video
if: ${{ failure() }}
run: mv video build/reports
- name: Wait for reports
if: always()
uses: jakejarvis/wait-action@master
with:
time: '10s'
- name: Save reports
if: always()
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.reportName }}
path: |
build/reports