-
Notifications
You must be signed in to change notification settings - Fork 94
56 lines (54 loc) · 1.52 KB
/
ci.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
name: ci
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
java-version: [ 8, 11 ]
jacoco: [true, false]
exclude:
- os: macos-latest
jacoco: true
- os: ubuntu-latest
jacoco: true
java-version: 11
- os: ubuntu-latest
jacoco: false
java-version: 8
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
architecture: x64
java-version: |
${{ matrix.java-version }}
11
cache: 'maven'
- name: Build & Test
run: ./mvnw -B verify && if [[ "${{ matrix.java-version }}" != "11" ]]; then JAVA_HOME="$JAVA_HOME_${{ matrix.java-version }}_X64" ./mvnw -B verify -P antlr-skip; fi
- name: Generate JaCoCo Badge
if: ${{ matrix.jacoco }}
uses: cicirello/jacoco-badge-generator@v2
id: jacoco
with:
generate-branches-badge: true
branches-badge-filename: branches.svg
- name: Commit and push the badge (if it changed)
if: ${{ matrix.jacoco && github.head_ref == 'master' }}
uses: EndBug/add-and-commit@v7
with:
default_author: github_actions
message: 'commit badge'
add: '*.svg'