Main Extension Distribution Pipeline #123
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
| name: Main Extension Distribution Pipeline | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - 'doc/**' | |
| - 'docs/**' | |
| - 'LICENSE' | |
| - '.gitignore' | |
| - '**.txt' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - 'doc/**' | |
| - 'docs/**' | |
| - 'LICENSE' | |
| - '.gitignore' | |
| - '**.txt' | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 12 * * *' # Runs at 12:00 UTC every day | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ | |
| github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' && github.sha || | |
| '' }} | |
| cancel-in-progress: true | |
| jobs: | |
| duckdb-next-build: | |
| name: Build extension binaries | |
| uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.4.3 | |
| with: | |
| duckdb_version: v1.4.3 | |
| ci_tools_version: v1.4.3 | |
| extension_name: radio | |
| exclude_archs: ${{ github.event_name == 'pull_request' && 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools;windows_amd64_mingw;linux_arm64;osx_amd64;osx_arm64' || 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools;windows_amd64_mingw' }} | |
| secrets: | |
| VCPKG_CACHING_AWS_ACCESS_KEY_ID: ${{ secrets.VCPKG_CACHING_AWS_ACCESS_KEY_ID | |
| }} | |
| VCPKG_CACHING_AWS_SECRET_ACCESS_KEY: ${{ secrets.VCPKG_CACHING_AWS_SECRET_ACCESS_KEY | |
| }} | |
| VCPKG_CACHING_AWS_ENDPOINT_URL: ${{ secrets.VCPKG_CACHING_AWS_ENDPOINT_URL }} | |
| VCPKG_CACHING_AWS_DEFAULT_REGION: ${{ secrets.VCPKG_CACHING_AWS_DEFAULT_REGION}} |