Build Linux Wheels #40
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-Wheels | |
on: | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
isNightly: | |
type: boolean | |
required: true | |
default: false | |
jobs: | |
build-linux-wheels-x86_64: | |
runs-on: kuzu-self-hosted-linux-building-x86_64_centos7 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update nightly version | |
if: ${{ inputs.isNightly == true }} | |
run: /opt/python/cp310-cp310/bin/python update-nightly-build-version.py | |
working-directory: scripts | |
- name: Build wheels | |
working-directory: ./scripts/pip-package/ | |
run: | | |
cp /home/runner/build_all_packages.sh . | |
source /opt/rh/devtoolset-11/enable | |
./build_all_packages.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: linux-wheels-x86_64 | |
path: ./scripts/pip-package/wheelhouse/*manylinux2014_x86_64.whl | |
build-linux-wheels-aarch64: | |
# Make sure this job runs on the larger self-hosted Linux ARM64 machine | |
runs-on: [kuzu-self-hosted-linux-building-aarch64, ac3] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update nightly version | |
if: ${{ inputs.isNightly == true }} | |
run: /opt/python/cp310-cp310/bin/python update-nightly-build-version.py | |
working-directory: scripts | |
- name: Build wheels | |
working-directory: ./scripts/pip-package/ | |
run: | | |
cp /home/runner/build_all_packages.sh . | |
./build_all_packages.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: linux-wheels-aarch64 | |
path: ./scripts/pip-package/wheelhouse/*manylinux_2_28_aarch64.whl |