Skip to content

Commit

Permalink
Merge pull request #51 from duckdb/main
Browse files Browse the repository at this point in the history
merge main into v1.0.0
  • Loading branch information
samansmink authored Jul 11, 2024
2 parents d6d09ae + b9b4693 commit 2c7e52a
Show file tree
Hide file tree
Showing 3 changed files with 195 additions and 156 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/TestCITools.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#
# This tests the extension-ci-tools works as expected
#
name: Test CI Tools
on:
push:
pull_request:
workflow_dispatch:

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

jobs:
extension-template-main:
name: Extension template
uses: ./.github/workflows/_extension_distribution.yml
with:
extension_name: quack
override_repository: duckdb/extension-template
override_ref: main
duckdb_version: v1.0.0
override_ci_tools_repository: ${{ github.repository }}
override_ci_tools_ref: ${{ github.sha }}

delta-extension-main:
name: Rust builds (using Delta extension)
uses: ./.github/workflows/_extension_distribution.yml
with:
extension_name: delta
enable_rust: true
override_repository: duckdb/duckdb_delta
override_ref: main
override_ci_tools_repository: ${{ github.repository }}
override_ci_tools_ref: ${{ github.sha }}
duckdb_version: v1.0.0
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools'
Loading

0 comments on commit 2c7e52a

Please sign in to comment.