perf(container): drop shared-container readiness probe; connect-with-… #218
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
| # | |
| # This workflow calls the main distribution pipeline from DuckDB to build, test and (optionally) release the extension | |
| # | |
| name: Main Extension Distribution Pipeline | |
| 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: | |
| # duckdb-stable-build: | |
| # name: Build extension binaries | |
| # uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.5.3 | |
| # with: | |
| # duckdb_version: v1.5.3 | |
| # ci_tools_version: v1.5.3 | |
| # extension_name: vgi | |
| jobs: | |
| header-hygiene: | |
| name: Header hygiene (fan-out guardrail) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Enforce heavy-include denylist on hub headers | |
| # Fails if a guarded hub header (see GUARDED_HEADERS in the script / | |
| # CLAUDE.md "Header hygiene") transitively pulls in the Arrow umbrella. | |
| # Pure source scan — no build needed. | |
| run: python3 scripts/header_reach.py --check | |
| duckdb-stable-build: | |
| name: Build extension binaries | |
| uses: Query-farm-haybarn/haybarn-extension-ci-tools/.github/workflows/_extension_distribution.yml@haybarn | |
| secrets: | |
| vcpkg_token: ${{ secrets.HAYBARN_VCPKG_TOKEN }} | |
| with: | |
| duckdb_version: haybarn-v1.5.3-rc10 | |
| ci_tools_version: haybarn | |
| override_ci_tools_repository: 'Query-farm-haybarn/haybarn-extension-ci-tools' | |
| extension_name: vgi | |
| use_prebuilt_images: true | |
| use_prebuilt_wasm_image: true | |
| prebuilt_image_tag: v1.5.3 | |
| extra_toolchains: parser_tools |