mirror of
https://github.com/zkonduit/ezkl.git
synced 2026-01-09 14:28:00 -05:00
133 lines
4.2 KiB
YAML
133 lines
4.2 KiB
YAML
name: Build and Publish Python GPU Bindings (linux only)
|
|
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: "The tag to release"
|
|
required: true
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: .
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
runs-on: GPU
|
|
strategy:
|
|
matrix:
|
|
target: [x86_64]
|
|
env:
|
|
RELEASE_TAG: ${{ github.ref_name }}
|
|
RUSTFLAGS: "-C linker=gcc"
|
|
OPENSSL_NO_VENDOR: 1
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
|
|
with:
|
|
persist-credentials: false
|
|
- uses: actions/setup-python@b64ffcaf5b410884ad320a9cfac8866006a109aa #v4.8.0
|
|
with:
|
|
python-version: 3.12
|
|
architecture: x64
|
|
|
|
|
|
|
|
- name: Install build dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y build-essential g++ gcc cmake libclang-dev llvm-dev libstdc++-12-dev libc6 libc6-dev libssl-dev pkg-config
|
|
|
|
- name: Force rebuild icicle dependencies
|
|
run: cargo clean -p icicle-runtime -p icicle-core -p icicle-hash -p icicle-bn254
|
|
|
|
- name: Set pyproject.toml version to match github tag and rename ezkl to ezkl-gpu
|
|
shell: bash
|
|
run: |
|
|
mv pyproject.toml pyproject.toml.orig
|
|
sed "s/ezkl/ezkl-gpu/" pyproject.toml.orig > pyproject.toml.tmp
|
|
sed "s/0\\.0\\.0/${RELEASE_TAG//v}/" pyproject.toml.tmp > pyproject.toml
|
|
|
|
- uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 #v1.0.6
|
|
with:
|
|
toolchain: nightly-2023-06-27
|
|
override: true
|
|
components: rustfmt, clippy
|
|
cache: false
|
|
|
|
- name: Set Cargo.toml version to match github tag and rename ezkl to ezkl-gpu
|
|
shell: bash
|
|
# the ezkl substitution here looks for the first instance of name = "ezkl" and changes it to "ezkl-gpu"
|
|
run: |
|
|
mv Cargo.toml Cargo.toml.orig
|
|
sed "0,/name = \"ezkl\"/s/name = \"ezkl\"/name = \"ezkl-gpu\"/" Cargo.toml.orig > Cargo.toml.tmp
|
|
sed "s/0\\.0\\.0/${RELEASE_TAG//v}/" Cargo.toml.tmp > Cargo.toml
|
|
mv Cargo.lock Cargo.lock.orig
|
|
sed "s/0\\.0\\.0/${RELEASE_TAG//v}/" Cargo.lock.orig > Cargo.lock
|
|
|
|
- name: Install required libraries
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get update && sudo apt-get install -y openssl pkg-config libssl-dev
|
|
|
|
- name: Build wheels
|
|
uses: PyO3/maturin-action@5f8a1b3b0aad13193f46c9131f9b9e663def8ce5 #v1.46.0
|
|
with:
|
|
target: ${{ matrix.target }}
|
|
manylinux: auto
|
|
container: off
|
|
args: --release --out dist --features python-bindings,gpu-accelerated
|
|
|
|
- name: Install built wheel
|
|
if: matrix.target == 'x86_64'
|
|
run: |
|
|
pip install ezkl-gpu --no-index --find-links dist --force-reinstall
|
|
|
|
- name: Upload wheels
|
|
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 #v4.6.0
|
|
with:
|
|
name: wheels
|
|
path: dist
|
|
|
|
|
|
pypi-publish:
|
|
name: Uploads release to PyPI
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write
|
|
if: "startsWith(github.ref, 'refs/tags/')"
|
|
# TODO: Uncomment if linux-cross is working
|
|
# needs: [ macos, windows, linux, linux-cross, musllinux, musllinux-cross ]
|
|
needs: [linux]
|
|
steps:
|
|
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 #v4.1.8
|
|
with:
|
|
name: wheels
|
|
- name: List Files
|
|
run: ls -R
|
|
|
|
# Both publish steps will fail if there is no trusted publisher setup
|
|
# On failure the publish step will then simply continue to the next one
|
|
|
|
# publishes to PyPI
|
|
- name: Publish package distributions to PyPI
|
|
continue-on-error: true
|
|
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc #v1.12.4
|
|
with:
|
|
packages-dir: ./wheels
|
|
|
|
# publishes to TestPyPI
|
|
- name: Publish package distribution to TestPyPI
|
|
continue-on-error: true
|
|
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc #v1.12.4
|
|
with:
|
|
repository-url: https://test.pypi.org/legacy/
|
|
packages-dir: ./wheels
|