-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.yaml
105 lines (104 loc) · 3.11 KB
/
tests.yaml
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
name: tests
on:
pull_request:
push:
branches: [main]
jobs:
run-tests:
runs-on: ubuntu-latest
if: "!contains(github.actor, 'weichbot10')"
steps:
- name: checkout the repository
uses: actions/checkout@v2
- name: setup java 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
# echo environment variables
- run: 'echo "$ENV" > src/main/resources/.env'
shell: bash
env:
ENV: ${{secrets.ENV}}
- name: Run tests with Maven
run: mvn jacoco:prepare-agent test install jacoco:report coveralls:report verify checkstyle:checkstyle -DrepoToken="$COVERALLS_TOKEN"
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
- name: publish test report
if: ${{ always() }}
uses: scacap/action-surefire-report@v1
with:
fail_on_test_failures: true
linux-installer:
runs-on: ubuntu-latest
needs: run-tests
if: "!contains(github.repository, 'util')" # do not try to build installer for non-gui-app
steps:
- name: checkout the repository
uses: actions/checkout@v2
- name: setup java 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
# echo environment variables
- run: 'echo "$ENV" > src/main/resources/.env'
shell: bash
env:
ENV: ${{secrets.ENV}}
# generate installer
- run: mvn clean install
- uses: actions/upload-artifact@v2
with:
name: linux-installer
path: target/*.deb
windows-installer:
runs-on: windows-latest
needs: run-tests
if: "!contains(github.repository, 'util')" # do not try to build installer for non-gui-app
steps:
- name: checkout the repository
uses: actions/checkout@v2
- name: setup java 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
# echo environment variables
- run: 'echo "$ENV" > src/main/resources/.env'
shell: bash
env:
ENV: ${{secrets.ENV}}
# generate installer
- run: mvn clean install
- uses: actions/upload-artifact@v2
with:
name: windows-installer
path: target/*.msi
macos-installer:
runs-on: macos-latest
needs: run-tests
if: "!contains(github.repository, 'util')" # do not try to build installer for non-gui-app
steps:
- name: checkout the repository
uses: actions/checkout@v2
- name: setup java 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
# echo environment variables
- run: 'echo "$ENV" > src/main/resources/.env'
shell: bash
env:
ENV: ${{secrets.ENV}}
# generate installer
- run: mvn clean install
- uses: actions/upload-artifact@v2
with:
name: macos-installer
path: target/*.dmg