-
Notifications
You must be signed in to change notification settings - Fork 90
109 lines (102 loc) · 3.32 KB
/
latest.yaml
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
101
102
103
104
105
106
107
108
109
name: "Blaze-Persistence CI"
on:
schedule:
- cron: '0 5 * * *'
env:
MAVEN_SKIP_RC: true
jobs:
build:
name: Test
runs-on: ubuntu-latest
# We want to know the test results of all matrix entries
continue-on-error: true
strategy:
fail-fast: false
matrix:
include:
################################################
# Latest integration dependencies
################################################
- rdbms: h2
component: other
jdk: 17
################################################
# hibernate-6.2
################################################
- rdbms: h2
component: hibernate-6.2
jdk: 17
################################################
# hibernate-6.4
################################################
- rdbms: h2
component: hibernate-6.4
jdk: 17
################################################
# hibernate-6.5
################################################
- rdbms: h2
component: hibernate-6.5
jdk: 17
################################################
# hibernate-6.6
################################################
- rdbms: h2
component: hibernate-6.6
jdk: 17
steps:
- uses: actions/checkout@v2
- name: Update /etc/hosts file
# /etc/hosts file needs to be updated as a workaround for
# https://github.com/actions/virtual-environments/issues/3185
run: echo -e "$(ip addr show eth0 | grep "inet\b" | awk '{print $2}' | cut -d/ -f1)\t$(hostname -f) $(hostname -s)" | sudo tee -a /etc/hosts
- name: Reclaim Disk Space
run: .github/ci-prerequisites.sh
- name: Set up Java 8
uses: AdoptOpenJDK/install-jdk@v1
with:
version: 8
targets: JDK8_HOME;JAVA_HOME
- name: Set up Requested JDK
uses: actions/setup-java@v3
if: ${{ matrix.jdk != 8 && !endsWith(matrix.jdk, '-ea') }}
with:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'
- name: Set up EA JDK
uses: actions/setup-java@v3
if: ${{ matrix.jdk != 8 && endsWith(matrix.jdk, '-ea') }}
with:
java-version: ${{ matrix.jdk }}
distribution: 'zulu'
- name: Get year/month for cache key
id: get-date
run: |
echo "::set-output name=yearmonth::$(/bin/date -u "+%Y-%m")"
shell: bash
- name: Cache Maven local repository
uses: actions/cache@v2
id: cache-maven
with:
path: |
~/.m2/repository
# refresh cache every month to avoid unlimited growth
key: maven-localrepo-${{ steps.get-date.outputs.yearmonth }}
- name: Set up Maven
run: ./mvnw -v
- name: Run build script
env:
JDK8_HOME: ${{ env.JDK8_HOME }}
RDBMS: ${{ matrix.rdbms }}
COMPONENT: ${{ matrix.component }}
JDK: ${{ matrix.jdk }}
run: ./ci/build-github-latest.sh
shell: bash
- name: Upload test reports (if Maven failed)
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-reports-${{ matrix.component }}
path: './**/*-reports/'
- name: Omit produced artifacts from build cache
run: ./ci/before-cache.sh