-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (37 loc) · 998 Bytes
/
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
name: CI build
on:
push:
branches:
- '*'
pull_request:
branches:
- $default-branch
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
jdk:
- version: 17
tasks: build jacocoTestReport testCodeCoverageReport
- version: 21
tasks: build jacocoTestReport testCodeCoverageReport sonar
name: JDK ${{ matrix.jdk.version }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# This is needed for Sonar to do analysis
fetch-depth: 0
- name: Setup Java JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk.version }}
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Run Gradle
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew -Dorg.gradle.welcome=never ${{ matrix.jdk.tasks }}