This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
Add shared libraries via git lfs #1
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
name: Build static library dependencies | |
on: | |
push: | |
branches: [main] | |
paths: | |
- ".github/workflows/**" | |
- "Makefile" | |
- "extension_config_local.cmake" | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- ".github/workflows/**" | |
- "Makefile" | |
- "extension_config_local.cmake" | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
prepare: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
ref: ${{ github.head_ref }} | |
- name: Install Git LFS | |
run: | | |
git lfs install | |
- shell: bash | |
run: make deps.header | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: duckdb_h | |
path: duckdb.h | |
retention-days: 1 | |
darwin_amd64: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
ref: ${{ github.head_ref }} | |
- name: Install Git LFS | |
run: | | |
git lfs install | |
- name: Install Ninja | |
run: | | |
brew install ninja autoconf make libtool automake autoconf-archive | |
- name: Setup Ccache | |
uses: hendrikmuhs/ccache-action@main | |
continue-on-error: true | |
with: | |
key: extension-distribution-amd64-osx | |
- name: vcpkg build | |
uses: lukka/run-vcpkg@v11 | |
with: | |
vcpkgGitCommitId: "5e5d0e1cd7785623065e77eff011afdeec1a3574" | |
- shell: bash | |
env: | |
VCPKG_ROOT: ${{ github.workspace }}/vcpkg | |
GEN: ninja | |
run: make deps.darwin.amd64 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: "Run tests" | |
env: | |
DYLD_LIBRARY_PATH: deps/darwin_amd64 | |
run: go test ./ -run '^TestOpen$' duckdb_test.go | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: darwin_amd64 | |
path: deps/darwin_amd64/* | |
retention-days: 1 | |
darwin_arm64: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
ref: ${{ github.head_ref }} | |
- name: Install Git LFS | |
run: | | |
git lfs install | |
- name: Install Ninja | |
run: | | |
brew install ninja autoconf make libtool automake autoconf-archive | |
- name: Setup Ccache | |
uses: hendrikmuhs/ccache-action@main | |
continue-on-error: true | |
with: | |
key: extension-distribution-arm64-osx | |
- name: vcpkg build | |
uses: lukka/run-vcpkg@v11 | |
with: | |
vcpkgGitCommitId: "5e5d0e1cd7785623065e77eff011afdeec1a3574" | |
- shell: bash | |
env: | |
VCPKG_ROOT: ${{ github.workspace }}/vcpkg | |
GEN: ninja | |
run: make deps.darwin.arm64 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: "Run tests" | |
env: | |
DYLD_LIBRARY_PATH: deps/darwin_arm64 | |
run: go test ./ -run '^TestOpen$' duckdb_test.go | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: darwin_arm64 | |
path: deps/darwin_arm64/* | |
retention-days: 1 | |
linux_amd64: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
ref: ${{ github.head_ref }} | |
- name: Install Git LFS | |
run: | | |
git lfs install | |
- uses: seanmiddleditch/gha-setup-ninja@master | |
- name: Setup Ccache | |
uses: hendrikmuhs/ccache-action@main | |
continue-on-error: true | |
with: | |
key: extension-distribution-amd64-linux | |
- name: vcpkg build | |
uses: lukka/run-vcpkg@v11 | |
with: | |
vcpkgGitCommitId: "5e5d0e1cd7785623065e77eff011afdeec1a3574" | |
- shell: bash | |
env: | |
VCPKG_ROOT: ${{ github.workspace }}/vcpkg | |
GEN: ninja | |
run: make deps.linux.amd64 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: "Run tests" | |
env: | |
LD_LIBRARY_PATH: deps/linux_amd64 | |
run: go test ./ -run '^TestOpen$' duckdb_test.go | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: linux_amd64 | |
path: deps/linux_amd64/* | |
retention-days: 1 | |
linux_arm64: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
ref: ${{ github.head_ref }} | |
- name: Install Git LFS | |
run: | | |
git lfs install | |
- uses: seanmiddleditch/gha-setup-ninja@master | |
- name: Install cross compile toolchain | |
shell: bash | |
run: | | |
sudo apt update | |
sudo apt install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu | |
- name: Setup Ccache | |
uses: hendrikmuhs/ccache-action@main | |
continue-on-error: true | |
with: | |
key: extension-distribution-arm64-linux | |
- name: vcpkg build | |
uses: lukka/run-vcpkg@v11 | |
with: | |
vcpkgGitCommitId: "5e5d0e1cd7785623065e77eff011afdeec1a3574" | |
- shell: bash | |
env: | |
VCPKG_ROOT: ${{ github.workspace }}/vcpkg | |
GEN: ninja | |
run: make deps.linux.arm64 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: build chroot | |
continue-on-error: true | |
run: | | |
sudo apt install qemu-user-static debootstrap binfmt-support | |
sudo mkdir -p /usr/aarch64-linux-gnu | |
sudo debootstrap --arch=arm64 focal /usr/aarch64-linux-gnu http://ports.ubuntu.com/ | |
- name: "Run tests" | |
env: | |
LD_LIBRARY_PATH: "/usr/aarch64-linux-gnu/lib64;deps/linux_arm64" | |
QEMU_LD_PREFIX: /usr/aarch64-linux-gnu/ | |
CGO_ENABLED: 1 | |
CC: aarch64-linux-gnu-gcc | |
CXX: aarch64-linux-gnu-gcc | |
GOOS: linux | |
GOARCH: arm64 | |
run: go test ./ -run '^TestOpen$' duckdb_test.go | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: linux_arm64 | |
path: deps/linux_arm64/* | |
retention-days: 1 | |
commit: | |
runs-on: ubuntu-latest | |
needs: [prepare, darwin_amd64, darwin_arm64, linux_amd64, linux_arm64] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
ref: ${{ github.head_ref }} | |
- name: Install Git LFS | |
run: | | |
git lfs install | |
- shell: bash | |
run: | | |
rm -f deps/darwin_amd64/libduckdb.a | |
rm -f deps/darwin_arm64/libduckdb.a | |
rm -f deps/linux_amd64/libduckdb.a | |
rm -f deps/linux_arm64/libduckdb.a | |
rm -f duckdb.h | |
- uses: actions/download-artifact@v4 | |
with: | |
name: duckdb_h | |
path: . | |
- uses: actions/download-artifact@v4 | |
with: | |
name: darwin_amd64 | |
path: deps/darwin_amd64 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: darwin_arm64 | |
path: deps/darwin_arm64 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: linux_amd64 | |
path: deps/linux_amd64 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: linux_arm64 | |
path: deps/linux_arm64 | |
- name: Push static libraries | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Re-build static libraries |