File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
build-cross-platform :
15
- name : test ${{matrix.os}} - ${{matrix.python-version}}
15
+ name : test ${{matrix.os}} - ${{matrix.python-version}} - ${{matrix.java-version}}
16
16
runs-on : ${{ matrix.os }}
17
17
strategy :
18
18
matrix :
33
33
python-version : ' 3.12'
34
34
java-version : ' '
35
35
36
-
37
36
steps :
38
37
- uses : actions/checkout@v2
39
38
Original file line number Diff line number Diff line change 73
73
else
74
74
argString=" "
75
75
fi
76
- if [ " $( uname -s) " = " Darwin" ]
76
+ if ! java -version 2>&1 | grep -q ' ^openjdk version "\(1\.8\|9\|10\|11\|12\|13\|14\|15\|16\)\.'
77
+ then
78
+ echo " Skipping jep tests due to unsupported Java version:"
79
+ java -version || true
80
+ jepCode=0
81
+ elif [ " $( uname -s) " = " Darwin" ]
77
82
then
78
83
echo " Skipping jep tests on macOS due to flakiness"
79
84
jepCode=0
You can’t perform that action at this time.
0 commit comments