Build Linux Precompiled Binaries #41
Workflow file for this run
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-Linux-Precompiled-Binaries | |
on: | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
build-precompiled-bin-x86_64: | |
runs-on: kuzu-self-hosted-linux-building | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build precompiled binaries | |
run: | | |
make release NUM_THREADS=$(nproc) | |
make install | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: libkuzu-linux-x86_64 | |
path: | | |
./install/include/kuzu.h | |
./install/include/kuzu.hpp | |
./install/lib/libkuzu.so | |
./install/lib/kuzu.a | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: kuzu_cli-linux-x86_64 | |
path: ./install/bin/kuzu_shell | |
build-precompiled-bin-aarch64: | |
runs-on: kuzu-self-hosted-linux-building-aarch64 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build precompiled binaries | |
run: | | |
make release NUM_THREADS=$(nproc) | |
make install | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: libkuzu-linux-x86_64 | |
path: | | |
./install/include/kuzu.h | |
./install/include/kuzu.hpp | |
./install/lib/libkuzu.so | |
./install/lib/kuzu.a | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: kuzu_cli-linux-x86_64 | |
path: ./install/bin/kuzu_shell |