-
Notifications
You must be signed in to change notification settings - Fork 158
51 lines (42 loc) · 1.37 KB
/
build-nightly.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
# This workflow will build the extension against the latest Liquibase artifact
name: "Nightly build"
on:
workflow_dispatch:
schedule:
- cron: '0 7 * * 1-5'
jobs:
nightly-build:
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.6.0
with:
nightly: true
java: '[17, 21]'
os: '["ubuntu-latest"]'
secrets: inherit
hibernate-test:
name: Test Hibernate ${{ matrix.hibernate }}
needs: nightly-build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
hibernate: [ "6.0.2.Final", "6.1.7.Final", "6.2.7.Final", "6.3.1.Final" ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Run Compatibility Tests
run: mvn -B jacoco:prepare-agent surefire:test -Dhibernate.version=${{ matrix.hibernate }}
- name: Run Tests
run: mvn -B jacoco:prepare-agent surefire:test
- name: Archive Test Results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: test-reports-hibernate-${{ matrix.hibernate }}
path: |
**/target/surefire-reports
**/target/jacoco.exec