Skip to content

Add community extension build CI #7

Add community extension build CI

Add community extension build CI #7

Workflow file for this run

name: Community Extension Build
on:
pull_request:
jobs:
duckdb-stable-build:
steps:

Check failure on line 7 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: 7, Col: 5): Required property is missing: runs-on
- name: Get all changed markdown files
id: changed-markdown-files
uses: tj-actions/changed-files@v44
with:
files: |
*/description.yml
- name: List all changed files markdown files
if: steps.changed-markdown-files.outputs.any_changed == 'true'
env:
ALL_CHANGED_FILES: ${{ steps.changed-markdown-files.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
# - 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'