Main Extension Distribution Pipeline #133
This file contains hidden or 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
| # | |
| # Build and test the extension using the DuckDB reusable CI workflow. | |
| # Run both the latest stable branch and DuckDB main so API breaks for the next | |
| # release line are caught before release day. | |
| # | |
| name: Main Extension Distribution Pipeline | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 8 * * 1-5" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' && github.sha || '' }} | |
| cancel-in-progress: false | |
| jobs: | |
| duckdb-stable-build: | |
| name: Build stable extension binaries | |
| uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.5-variegata | |
| with: | |
| duckdb_version: v1.5-variegata | |
| ci_tools_version: v1.5-variegata | |
| extension_name: yardstick | |
| extra_toolchains: rust | |
| exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;linux_amd64_gcc4;windows_amd64_rtools;windows_amd64_mingw" | |
| duckdb-next-build: | |
| name: Build next extension binaries | |
| uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main | |
| with: | |
| duckdb_version: main | |
| ci_tools_version: main | |
| extension_name: yardstick | |
| extra_toolchains: rust | |
| exclude_archs: "wasm_mvp;wasm_eh;wasm_threads;linux_amd64_gcc4;windows_amd64_rtools;windows_amd64_mingw" |