Skip to content

Commit

Permalink
Merge pull request #1 from hannes/main
Browse files Browse the repository at this point in the history
first attempt at ci
  • Loading branch information
hannes authored Jun 3, 2024
2 parents 9c58492 + a1aff19 commit aa5d22a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Community Extension Build
on:
pull_request:

jobs:
duckdb-stable-build:
- name: Get all changed markdown files
id: changed-markdown-files
uses: tj-actions/changed-files@v44
with: */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'

0 comments on commit aa5d22a

Please sign in to comment.