Skip to content

Add community extension build CI #13

Add community extension build CI

Add community extension build CI #13

Workflow file for this run

name: Community Extension Build
on:
pull_request:
jobs:
duckdb-stable-build:
runs-on: ubuntu-latest
steps:
- name: Get all changed description files
id: changed-files
uses: tj-actions/changed-files@v44
with:
files: |
extensions/*/description.yml
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Parse description files
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
pip install pyyaml
python scripts/build.py
- uses: actions/checkout@v4
env:

Check failure on line 28 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Community Extension Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 28, Col: 11): Unexpected value ''
with:
repository: ${{ env.COMMUNITY_EXTENSION_URL }}
ref: ${{ env.COMMUNITY_EXTENSION_REF }}
path: extension-build
fetch-depth: 0
# - name: Build extension binaries
# uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
# with:
# duckdb_version: main
# extension_name: postgres_scanner
# exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools'