forked from duckdb/duckdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3,364 changed files
with
159,706 additions
and
102,910 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,9 @@ inputs: | |
default: '' | ||
|
||
# Build config | ||
duckdb_arch: | ||
description: 'Provide DUCKDB_PLATFORM to build system for cross compilation' | ||
default: '' | ||
static_link_build: | ||
description: 'Links DuckDB statically to the loadable extensions' | ||
default: 1 | ||
|
@@ -93,7 +96,7 @@ runs: | |
if: inputs.vcpkg_build == 1 | ||
uses: lukka/[email protected] | ||
with: | ||
vcpkgGitCommitId: 501db0f17ef6df184fcdbfbe0f87cde2313b6ab1 | ||
vcpkgGitCommitId: a42af01b72c28a8e1d7b48107b33e4f286a55ef6 | ||
|
||
- name: Set vcpkg env variables | ||
if: inputs.vcpkg_build == 1 | ||
|
@@ -140,6 +143,7 @@ runs: | |
LOCAL_EXTENSION_REPO: ${{ inputs.run_autoload_tests == 1 && github.workspace || ''}} | ||
GEN: ${{ inputs.ninja == 1 && 'ninja' || '' }} | ||
USE_MERGED_VCPKG_MANIFEST: 1 | ||
DUCKDB_PLATFORM: ${{ inputs.duckdb_arch }} | ||
run: | | ||
ls | ||
mkdir -p ~/.ssh | ||
|
@@ -209,15 +213,16 @@ runs: | |
AWS_SECRET_ACCESS_KEY: ${{ inputs.s3_key }} | ||
DUCKDB_EXTENSION_SIGNING_PK: ${{ inputs.signing_pk }} | ||
AWS_DEFAULT_REGION: us-east-1 | ||
DUCKDB_DEPLOY_SCRIPT_MODE: for_real | ||
run: | | ||
cd ${{ inputs.build_dir}} | ||
if [[ "$GITHUB_REPOSITORY" = "duckdb/duckdb" ]] ; then | ||
if [[ ! -z "${{ inputs.deploy_version }}" ]] ; then | ||
./scripts/extension-upload.sh ${{ inputs.deploy_as }} ${{ inputs.deploy_version }} | ||
./scripts/extension-upload-all.sh ${{ inputs.deploy_as }} ${{ inputs.deploy_version }} | ||
elif [[ "$GITHUB_REF" =~ ^(refs/tags/v.+)$ ]] ; then | ||
./scripts/extension-upload.sh ${{ inputs.deploy_as }} ${{ github.ref_name }} | ||
./scripts/extension-upload-all.sh ${{ inputs.deploy_as }} ${{ github.ref_name }} | ||
elif [[ "$GITHUB_REF" =~ ^(refs/heads/main)$ ]] ; then | ||
./scripts/extension-upload.sh ${{ inputs.deploy_as }} `git log -1 --format=%h` | ||
./scripts/extension-upload-all.sh ${{ inputs.deploy_as }} `git log -1 --format=%h` | ||
fi | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,7 @@ runs: | |
if: ${{ inputs.vcpkg == 1 }} | ||
uses: lukka/[email protected] | ||
with: | ||
vcpkgGitCommitId: 501db0f17ef6df184fcdbfbe0f87cde2313b6ab1 | ||
vcpkgGitCommitId: a42af01b72c28a8e1d7b48107b33e4f286a55ef6 | ||
|
||
- name: Install OpenSSL | ||
if: ${{ inputs.openssl == 1 }} | ||
|
@@ -105,7 +105,7 @@ runs: | |
|
||
- name: Setup Ccache | ||
if: ${{ inputs.ccache == 1 }} | ||
uses: hendrikmuhs/ccache-action@main | ||
uses: hendrikmuhs/ccache-action@v1.2.11 # Note: pinned due to GLIBC incompatibility in later releases | ||
with: | ||
key: ${{ github.job }} | ||
save: ${{ github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb' }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,11 +84,11 @@ runs: | |
if: ${{ inputs.vcpkg == 1 }} | ||
uses: lukka/[email protected] | ||
with: | ||
vcpkgGitCommitId: 501db0f17ef6df184fcdbfbe0f87cde2313b6ab1 | ||
vcpkgGitCommitId: a42af01b72c28a8e1d7b48107b33e4f286a55ef6 | ||
|
||
- name: Setup Ccache | ||
if: ${{ inputs.ccache == 1 }} | ||
uses: hendrikmuhs/ccache-action@main | ||
uses: hendrikmuhs/ccache-action@v1.2.11 # Note: pinned due to GLIBC incompatibility in later releases | ||
with: | ||
key: ${{ github.job }} | ||
save: ${{ github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb' }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.