-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from samansmink/re-enable-rust-building
Re-enable rust, fix ubuntu 18 failure
- Loading branch information
Showing
2 changed files
with
187 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
Oops, something went wrong.