Skip to content

Commit cdcd18d

Browse files
committed
Add custom workflow to build custom version
1 parent 6de7937 commit cdcd18d

File tree

5 files changed

+25
-174
lines changed

5 files changed

+25
-174
lines changed

.github/workflows/InternalIssuesCreateMirror.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/InternalIssuesUpdateMirror.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/Linux.yml

Lines changed: 0 additions & 87 deletions
This file was deleted.

.github/workflows/MainDistributionPipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ jobs:
1616
name: Build extension binaries
1717
uses: duckdb/extension-ci-tools/.github/workflows/[email protected]
1818
with:
19-
duckdb_version: v1.3.2
19+
duckdb_version: 3de8d76ba8
2020
ci_tools_version: v1.3.2
2121
extension_name: postgres_scanner
22-
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_mingw'
22+
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_mingw;linux_amd64;osx_arm64;linux_amd64_musl;osx_amd64;windows_amd64'
2323

2424
duckdb-stable-deploy:
2525
name: Deploy extension binaries
2626
needs: duckdb-stable-build
2727
uses: duckdb/extension-ci-tools/.github/workflows/[email protected]
2828
secrets: inherit
2929
with:
30-
duckdb_version: v1.3.2
30+
duckdb_version: 3de8d76ba8
3131
ci_tools_version: v1.3.2
3232
extension_name: postgres_scanner
33-
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_mingw'
33+
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_mingw;linux_amd64;osx_arm64;linux_amd64_musl;osx_amd64;windows_amd64'
3434
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Internal Build
2+
on:
3+
pull_request:
4+
workflow_dispatch:
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
duckdb-internal-build:
12+
name: Build extension binaries
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
- name: Set up DuckDB
18+
run: |
19+
git submodule init
20+
git pull --recurse-submodules
21+
make

0 commit comments

Comments
 (0)