Skip to content

Commit 0d95f68

Browse files
committed
tmp7
1 parent 0179c32 commit 0d95f68

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/Java.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,25 @@ jobs:
5050
java -version
5151
java ./src/test/external/SetupMinio.java
5252
53+
- name: Setup Postgres
54+
run: |
55+
uses: ikalnytskyi/action-setup-postgres@v7
56+
with:
57+
postgres-version: '15'
58+
username: 'postgres'
59+
password: 'postgres'
60+
database: 'postgres'
61+
port: '5432'
62+
ssl: true
63+
64+
- name: Setup DuckLake
65+
run: |
66+
wget https://github.com/staticlibs/jdbc_bin_temp/raw/refs/heads/master/duckdb_jdbc.jar
67+
wget https://github.com/pgjdbc/pgjdbc/releases/download/REL42.7.7/postgresql-42.7.7.jar
68+
java -version
69+
java -cp duckdb_jdbc.jar:postgresql-42.7.7.jar ./src/test/external/SetupDuckLake.java
70+
71+
5372
format-check:
5473
if: ${{ false }}
5574
name: Format Check

0 commit comments

Comments
 (0)