-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (54 loc) · 2.29 KB
/
MainDistributionPipeline.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Main Extension Distribution Pipeline
on:
push:
paths-ignore:
- '**/README.md'
pull_request:
workflow_dispatch:
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
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-v0101:
name: Build v.0.10.1 extension binaries
uses: ./.github/workflows/_extension_build.yml
with:
duckdb_version: v0.10.1
extension_name: erpl
exclude_archs: osx_amd64;osx_arm64;linux_arm64;windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads
vcpkg_commit: 9edb1b8e590cc086563301d735cae4b6e732d2d2
secrets: inherit
duckdb-stable-deploy-v0101:
name: Deploy extension binaries
needs: duckdb-stable-build-v0101
uses: ./.github/workflows/_extension_deploy.yml
secrets: inherit
with:
duckdb_version: v0.10.1
extension_name: erpl
exclude_archs: osx_amd64;osx_arm64;linux_arm64;windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master' }}
deploy_versioned: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master' }}
duckdb-stable-build-v0102:
name: Build v.0.10.2 extension binaries
uses: ./.github/workflows/_extension_build.yml
with:
duckdb_version: v0.10.2
extension_name: erpl
exclude_archs: osx_amd64;osx_arm64;linux_arm64;windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads
vcpkg_commit: 9edb1b8e590cc086563301d735cae4b6e732d2d2
secrets: inherit
duckdb-stable-deploy-v0102:
name: Deploy extension binaries
needs: duckdb-stable-build-v0102
uses: ./.github/workflows/_extension_deploy.yml
secrets: inherit
with:
duckdb_version: v0.10.2
extension_name: erpl
exclude_archs: osx_amd64;osx_arm64;linux_arm64;windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master' }}
deploy_versioned: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master' }}