File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 4
4
build :
5
5
name : Exist ${{ matrix.exist-version }} (Java ${{ matrix.java-version }}) build and test
6
6
strategy :
7
- fail-fast : true
7
+ fail-fast : false
8
8
matrix :
9
9
exist-version : [latest, 6.2.0]
10
- java-version : ['8', '17 ']
10
+ java-version : ['8', '21 ']
11
11
os : [ubuntu-latest]
12
12
exclude :
13
13
- exist-version : 6.2.0
14
- java-version : 17
14
+ java-version : 21
15
15
- exist-version : latest
16
16
java-version : 8
17
17
@@ -28,13 +28,18 @@ jobs:
28
28
run : |
29
29
sudo apt-get update
30
30
sudo apt-get install -y bats
31
+
31
32
- name : Maven Build
32
33
run : mvn clean package
33
34
35
+ - name : set min templating version from pom
36
+ run : |
37
+ echo "TEMPLATING_VERSION=$(mvn help:evaluate -Dexpression=templating.version -q -DforceStdout)" >> $GITHUB_ENV
38
+
34
39
- name : Add expath dependencies
35
40
working-directory : target
36
41
run : |
37
- wget http://exist-db.org/exist/apps/public-repo/public/templating-1.2.1 .xar -O 001.xar
42
+ wget http://exist-db.org/exist/apps/public-repo/public/templating-${{ env.TEMPLATING_VERSION }} .xar -O 001.xar
38
43
39
44
40
45
# Install
You can’t perform that action at this time.
0 commit comments