Skip to content

36 add osx apple silicon support #222

36 add osx apple silicon support

36 add osx apple silicon support #222

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-v100:
name: Build v.1.0.0 extension binaries
uses: ./.github/workflows/_extension_build.yml
with:
duckdb_version: v1.0.0
extension_name: erpl
exclude_archs: linux_arm64;windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads
vcpkg_commit: 9edb1b8e590cc086563301d735cae4b6e732d2d2
secrets: inherit
duckdb-stable-deploy-v100:
name: Deploy extension binaries
needs: duckdb-stable-build-v100
uses: ./.github/workflows/_extension_deploy.yml
secrets: inherit
with:
duckdb_version: v1.0.0
extension_name: erpl
exclude_archs: 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') }}