forked from Shopkeepers/Shopkeepers
-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (66 loc) · 2.2 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
# This name is also shown in the status badge.
name: Build
on:
push:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
# Rebuild periodically to keep the cache alive:
schedule:
- cron: '45 4 * * 0,3'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
fetch-depth: 0 # SonarCloud: Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'zulu'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/*.gradle*', '**/libs.versions.toml', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-m2
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/libs.versions.toml', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle
- name: Cache Jabba JDK installations
uses: actions/cache@v3
with:
path: ~/.jabba
key: ${{ runner.os }}-jabba-${{ hashFiles('**/*.sh') }}
restore-keys: |
${{ runner.os }}-jabba
- name: Cache SonarCloud packages
if: github.event_name != 'pull_request'
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
- name: Build Shopkeepers
run: ./build.sh
- name: Run SonarCloud analysis
if: github.event_name != 'pull_request'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Not available for pull request builds
run: ./gradlew sonar
# Upload workflow artifacts to allow the inspection of build results.
# These are only retained for a few days.
- name: Stage artifacts for upload
run: mkdir staging && cp build/*.jar staging
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
path: staging