-
Notifications
You must be signed in to change notification settings - Fork 30
42 lines (39 loc) · 1.03 KB
/
build_all.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Build all extensions
on:
workflow_dispatch:
inputs:
duckdb_version:
type: string
duckdb_tag:
type: string
deploy:
type: string
jobs:
collect_extensions:
outputs:
COMMUNITY_EXTENSION_LIST: ${{ steps.generate_list.outputs.EXTENSION_LIST }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate extension list
id: generate_list
run: |
./scripts/get_extension_list.sh
cat extension_list
cat extension_list >> $GITHUB_OUTPUT
build_all:
needs:
- collect_extensions
strategy:
fail-fast: false
matrix:
extension_name: ${{ fromJson(needs.collect_extensions.outputs.COMMUNITY_EXTENSION_LIST) }}
uses: ./.github/workflows/build.yml
secrets: inherit
with:
extension_name: ${{ matrix.extension_name }}
duckdb_version: ${{ inputs.duckdb_version }}
duckdb_tag: ${{ inputs.duckdb_tag }}
deploy: ${{ inputs.deploy }}