-
Notifications
You must be signed in to change notification settings - Fork 613
49 lines (45 loc) · 1.37 KB
/
ci-boot.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
name: CI Boot
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 1'
jobs:
# build and test, then upload logs if failure
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
java: [ 17 ]
boot: [ 3.1.10, 3.2.0, 3.2.1, 3.2.2, 3.2.3 ]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: ${{ matrix.java }}
cache: gradle
- name: Build boot ${{ matrix.boot }} java ${{ matrix.java }}
run: ./gradlew clean build -PspringBootVersion=${{ matrix.boot }}
env:
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }}
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
- name: Tar Build Logs
if: ${{ failure() }}
run: |
mkdir -p build
tar \
-zc \
--ignore-failed-read \
--file build/buildlogs.tar.gz \
*/build/reports \
*/*/build/reports
- name: Upload Build Logs
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: buildlogs-${{ matrix.boot }}-${{ matrix.java }}
path: build/buildlogs.tar.gz