-
-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (86 loc) · 2.4 KB
/
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
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
# Continuous Integration
name: Build
on:
push:
branches:
- '*'
pull_request:
branches:
- main
- develop
jobs:
build:
name: Build on JDK${{ matrix.jdk }}
runs-on: ubuntu-latest
strategy:
matrix:
jdk: [ 11, 17, 21 ]
steps:
# ================================
# SHALLOW CLONE
# ================================
- name: Shallow clone
if: ${{ matrix.jdk != 21 }}
uses: actions/checkout@v3
# ================================
# CHECKOUT
# ================================
- name: Checkout git branch
if: ${{ matrix.jdk == 21 }}
uses: actions/checkout@v3
with:
# Fetch all history for all tags and branches (recommended by SonarQube)
fetch-depth: 0
# ================================
# SET UP JDK
# ================================
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-package: jdk
java-version: ${{ matrix.jdk }}
# ================================
# CACHE SONARCLOUD PACKAGES
# ================================
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
key: ${{ runner.os }}-sonar
path: |
~/.sonar/cache
restore-keys: |
${{ runner.os }}-sonar
# ================================
# SETUP GRADLE
# ================================
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
# ================================
# BUILD
# ================================
- name: Build
uses: gradle/gradle-build-action@v2
with:
arguments: build -x check --info --scan
# ================================
# CHECK
# ================================
- name: Check
uses: gradle/gradle-build-action@v2
with:
arguments: check --info --scan
# ================================
# ANALYZE
# ================================
- name: Analyze
if: ${{ matrix.jdk == 21 }}
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: https://sonarcloud.io
SONAR_ORGANIZATION: leakyabstractions
uses: gradle/gradle-build-action@v2
with:
arguments: sonarqube --info --scan