Skip to content

Commit 9cbfad4

Browse files
committed
Temporary disable compliance CI runs
JDBC compliance test runs use the scripts from https://github.com/cwida/jdbccts repo. CMake script in this repo became broken after the CMake 4.0 update on CI runners. It now breaks with the following message: ``` Compatibility with CMake < 3.5 has been removed from CMake. ``` There is an ongoing activity to fix this in `jdbcct`, meanwhile this change temporary disables compliance CI runs until the fix is applied.
1 parent 0f27668 commit 9cbfad4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/Java.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,10 @@ jobs:
276276
jdbc-compliance:
277277
name: JDBC Compliance
278278
runs-on: ubuntu-20.04
279-
if: ${{ inputs.skip_tests != 'true' }}
279+
# temporary disabled until jdbccts is fixed
280+
# https://github.com/cwida/jdbccts/pull/1
281+
if: ${{ false }}
282+
#if: ${{ inputs.skip_tests != 'true' }}
280283
needs: java-linux-amd64
281284
container: quay.io/pypa/manylinux_2_28_x86_64
282285
env:

0 commit comments

Comments
 (0)