disable ext main build (#7)
* disable ext main build * exclude arches when not in duckdb org
This commit is contained in:
@@ -6,11 +6,13 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- "ts/**"
|
- "ts/**"
|
||||||
|
- ".github/workflows/TypeScriptWorkspace.yml"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "main"
|
- "main"
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- "ts/**"
|
- "ts/**"
|
||||||
|
- ".github/workflows/TypeScriptWorkspace.yml"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
@@ -19,12 +21,13 @@ concurrency:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
duckdb-main-build:
|
duckdb-main-build:
|
||||||
|
if: false # Disable until issue with breaking change to C++ extension interface is resolved. See https://github.com/duckdb/duckdb/pull/17772.
|
||||||
name: Build main extension binaries
|
name: Build main extension binaries
|
||||||
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
|
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
|
||||||
with:
|
with:
|
||||||
ci_tools_version: main
|
ci_tools_version: main
|
||||||
duckdb_version: main
|
duckdb_version: main
|
||||||
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads'
|
exclude_archs: ${{ github.repository == 'duckdb/duckdb-ui' && 'wasm_mvp;wasm_eh;wasm_threads' || 'linux_arm64;linux_amd64_musl;osx_amd64;windows_amd64_mingw;wasm_mvp;wasm_eh;wasm_threads' }}
|
||||||
extension_name: ui
|
extension_name: ui
|
||||||
|
|
||||||
duckdb-next-patch-build:
|
duckdb-next-patch-build:
|
||||||
@@ -33,7 +36,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
ci_tools_version: v1.3.0
|
ci_tools_version: v1.3.0
|
||||||
duckdb_version: v1.3-ossivalis
|
duckdb_version: v1.3-ossivalis
|
||||||
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads'
|
exclude_archs: ${{ github.repository == 'duckdb/duckdb-ui' && 'wasm_mvp;wasm_eh;wasm_threads' || 'linux_arm64;linux_amd64_musl;osx_amd64;windows_amd64_mingw;wasm_mvp;wasm_eh;wasm_threads' }}
|
||||||
extension_name: ui
|
extension_name: ui
|
||||||
|
|
||||||
duckdb-stable-build:
|
duckdb-stable-build:
|
||||||
@@ -42,7 +45,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
ci_tools_version: v1.3.0
|
ci_tools_version: v1.3.0
|
||||||
duckdb_version: v1.3.0
|
duckdb_version: v1.3.0
|
||||||
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads'
|
exclude_archs: ${{ github.repository == 'duckdb/duckdb-ui' && 'wasm_mvp;wasm_eh;wasm_threads' || 'linux_arm64;linux_amd64_musl;osx_amd64;windows_amd64_mingw;wasm_mvp;wasm_eh;wasm_threads' }}
|
||||||
extension_name: ui
|
extension_name: ui
|
||||||
|
|
||||||
duckdb-stable-deploy:
|
duckdb-stable-deploy:
|
||||||
|
|||||||
Reference in New Issue
Block a user