Skip to content

Commit 7078907

Browse files
committed
tmp1
1 parent 187bddc commit 7078907

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/Java.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717

1818
format-check:
1919
name: Format Check
20+
if: ${{ false }}
2021
runs-on: ubuntu-latest
2122
steps:
2223
- uses: actions/checkout@v4
@@ -224,7 +225,7 @@ jobs:
224225
"
225226
- name: List Symbols
226227
run: |
227-
nm -gU ./build/release/libduckdb_java.so_linux_aarch64
228+
nm -gU ./build/release/libduckdb_java.so_linux_arm64
228229
229230
- name: JDBC Tests EL8
230231
shell: bash
@@ -341,7 +342,7 @@ jobs:
341342
342343
- name: List Symbols
343344
run: |
344-
nm -gU ./build/release/libduckdb_java.so_linux_aarch64
345+
nm -gU ./build/release/libduckdb_java.so_linux_arm64
345346
346347
# Test runs are failing because of linux_arm64_musl extensions missing
347348
- name: JDBC Tests
@@ -370,7 +371,7 @@ jobs:
370371
java-windows-amd64:
371372
name: Java Windows (amd64)
372373
runs-on: windows-latest
373-
needs: java-linux-amd64
374+
# needs: java-linux-amd64
374375
steps:
375376
- uses: actions/checkout@v4
376377
with:
@@ -381,14 +382,14 @@ jobs:
381382
with:
382383
python-version: "3.12"
383384

384-
- name: Build
385-
shell: bash
386-
run: make release
385+
# - name: Build
386+
# shell: bash
387+
# run: make release
387388

388389
- name: List Symbols
389-
shell: bash
390+
shell: cmd
390391
run: |
391-
dumpbin /exports ./build/Release/libduckdb_java.so_windows_amd64
392+
dumpbin.exe /exports build\Release\libduckdb_java.so_windows_amd64
392393
393394
- name: Java Tests
394395
if: ${{ inputs.skip_tests != 'true' }}

0 commit comments

Comments
 (0)