-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (45 loc) · 1.29 KB
/
Copy pathci.yml
File metadata and controls
52 lines (45 loc) · 1.29 KB
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
name: CI
on:
push:
branches: [master]
pull_request:
jobs:
test:
name: Baseline Boot 2.6.13 / Quarkus 3.6.4 (JDK ${{ matrix.java }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: ['11', '17', '21']
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build and test
run: mvn clean verify -B
spring-boot-3:
name: Spring Boot 3.2.12 (JDK 17)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
cache: maven
# Overrides the Spring Boot / Framework versions so the auto-configuration
# (registered via AutoConfiguration.imports) is exercised on Boot 3
- name: Test pgcache-spring against Boot 3
run: >
mvn -B -pl pgcache-spring -am test
-Dspring.boot.version=3.2.12
-Dspring.framework.version=6.1.16
-Dmicrometer.version=1.12.13
-Dslf4j.version=2.0.13