-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.14 KB
/
main.linux.temurin.lts.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
name: main.linux.temurin.lts
on:
push:
branches: [ develop, feature/*, release/* ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- name: Build
run: ./.github/workflows/run-with-xvfb.sh mvn --errors clean verify site
- name: Upload video
uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: test-video
path: test-suite.mkv
- name: Upload test logs
uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: test-logs
path: ./com.io7m.digal.tests/target/surefire-reports
- name: Upload test images
uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: test-images
path: ./com.io7m.digal.tests/testCSS.png
- name: Coverage
uses: codecov/codecov-action@v1
with:
file: com.io7m.digal.tests/target/site/jacoco-aggregate/jacoco.xml