We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d429d9 commit e2787f0Copy full SHA for e2787f0
1 file changed
.github/workflows/main.yml
@@ -314,6 +314,24 @@ jobs:
314
- name: Shortly run DuckDB
315
run: cd target && java -jar $(ls | grep -P 'sqlancer-[0-9.]*.jar') --num-threads 4 --timeout-seconds 30 duckdb
316
317
+ java14:
318
+ name: Java 14 Compatibility (DuckDB)
319
+ runs-on: ubuntu-latest
320
+
321
+ steps:
322
+ - uses: actions/checkout@v2
323
+ with:
324
+ fetch-depth: 0
325
+ - name: Set up JDK 14
326
+ uses: actions/setup-java@v1
327
328
+ java-version: 14
329
+ - name: Build
330
+ run: mvn -B package -DskipTests=true
331
+ - name: Shortly run DuckDB
332
+ run: cd target && java -jar $(ls | grep -P 'sqlancer-[0-9.]*.jar') --num-threads 4 --timeout-seconds 30 duckdb
333
334
335
java15:
336
name: Java 15 EA Compatibility (DuckDB)
337
runs-on: ubuntu-latest
0 commit comments