We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ace4df5 commit 34bfae2Copy full SHA for 34bfae2
2 files changed
.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:
@@ -32,7 +32,8 @@ jobs:
32
- os: ubuntu-latest
33
python-version: '3.12'
34
java-version: ''
35
-
+ env:
36
+ SKIP_JEP: true
37
38
steps:
39
- uses: actions/checkout@v2
bin/test.sh
@@ -73,7 +73,11 @@ then
73
else
74
argString=""
75
fi
76
-if [ "$(uname -s)" = "Darwin" ]
+if [ "$SKIP_JEP" = true ]
77
+then
78
+ echo "Skipping jep tests due to SKIP_JEP flag"
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