Skip to content

Commit aaf8bd4

Browse files
authored
Update build workflow for new DuckDB release (v1.4.4) (#8)
1 parent 0ed1f71 commit aaf8bd4

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/dist_pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
contents: read
1717

1818
concurrency:
19-
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }}
19+
group: ${{ github.workflow }}-${{ github.ref }}
2020
cancel-in-progress: true
2121

2222
jobs:
@@ -30,10 +30,10 @@ jobs:
3030
exclude_archs: "windows_amd64_mingw;osx_amd64;wasm_mvp;wasm_eh;wasm_threads"
3131

3232
duckdb-stable-build:
33-
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].3
33+
uses: duckdb/extension-ci-tools/.github/workflows/[email protected].4
3434
with:
35-
duckdb_version: v1.4.3
36-
ci_tools_version: v1.4.3
35+
duckdb_version: v1.4.4
36+
ci_tools_version: v1.4.4
3737
extension_name: gaggle
3838
enable_rust: true
3939
exclude_archs: "windows_amd64_mingw;osx_amd64;wasm_mvp;wasm_eh;wasm_threads"

external/duckdb

Submodule duckdb updated 233 files

gaggle/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ parking_lot = "0.12"
1818
thiserror = "2.0"
1919
serde = { version = "1.0", features = ["derive"] }
2020
serde_json = "1.0"
21-
reqwest = { version = "0.12", features = ["blocking", "rustls-tls", "json", "multipart"], default-features = false }
22-
zip = { version = "6.0", default-features = false, features = ["deflate"] }
21+
reqwest = { version = "=0.12", features = ["blocking", "rustls-tls", "json", "multipart"], default-features = false }
22+
zip = { version = "7.2", default-features = false, features = ["deflate"] }
2323
dirs = "6.0"
2424
urlencoding = "2.1"
2525
tracing = "0.1"
@@ -36,7 +36,7 @@ proptest = "1.5"
3636
opt-level = 3
3737
lto = true
3838
codegen-units = 1
39-
panic = "abort"
39+
panic = "unwind"
4040

4141
[profile.dev]
4242
opt-level = 0

0 commit comments

Comments
 (0)