Skip to content

Commit 37dfd09

Browse files
authored
Initial commit
0 parents  commit 37dfd09

File tree

12 files changed

+1881
-0
lines changed

12 files changed

+1881
-0
lines changed

.cargo/config.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# statically linking the C runtime on windows seems sensible?
2+
[target.x86_64-pc-windows-msvc]
3+
rustflags = ["-Ctarget-feature=+crt-static"]
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#
2+
# This workflow calls the main distribution pipeline from DuckDB to build, test and (optionally) release the extension
3+
#
4+
name: Main Extension Distribution Pipeline
5+
on:
6+
push:
7+
pull_request:
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
duckdb-stable-build:
16+
name: Build extension binaries
17+
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
18+
with:
19+
duckdb_version: v1.1.3
20+
ci_tools_version: main
21+
extension_name: rusty_quack
22+
extra_toolchains: rust;python3
23+
exclude_archs: 'windows_amd64_rtools'

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/target
2+
build
3+
configure
4+
.idea
5+
duckdb_unittest_tempdir
6+
/test/bin
7+
venv

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "extension-ci-tools"]
2+
path = extension-ci-tools
3+
url = https://github.com/duckdb/extension-ci-tools

0 commit comments

Comments
 (0)