We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace4df5 commit 71ef66bCopy full SHA for 71ef66b
.github/workflows/build.yml
@@ -12,7 +12,7 @@ on:
12
13
jobs:
14
build-cross-platform:
15
- name: test ${{matrix.os}} - ${{matrix.python-version}}
+ name: test ${{matrix.os}} - ${{matrix.python-version}} - ${{matrix.java-version}}
16
runs-on: ${{ matrix.os }}
17
strategy:
18
matrix:
@@ -33,7 +33,6 @@ jobs:
33
python-version: '3.12'
34
java-version: ''
35
36
-
37
steps:
38
- uses: actions/checkout@v2
39
bin/test.sh
@@ -73,7 +73,11 @@ then
73
else
74
argString=""
75
fi
76
-if [ "$(uname -s)" = "Darwin" ]
+if ! java -version 2>/dev/null
77
+then
78
+ echo "No Java available; skipping jep tests"
79
+ jepCode=0
80
+elif [ "$(uname -s)" = "Darwin" ]
81
then
82
echo "Skipping jep tests on macOS due to flakiness"
83
jepCode=0
0 commit comments