cddb07a176
build container image / cpu (push) Waiting to run
build container image / cuda (push) Waiting to run
build container image / rocm (push) Waiting to run
docs / deploy (push) Blocked by required conditions
docs / changes (push) Waiting to run
docs / check-and-build (push) Blocked by required conditions
frontend tests / frontend-tests (push) Waiting to run
openapi checks / openapi-checks (push) Waiting to run
python tests / py3.12: macos-default (push) Waiting to run
python tests / py3.11: windows-cpu (push) Waiting to run
python tests / py3.12: windows-cpu (push) Waiting to run
python tests / py3.11: linux-cpu (push) Waiting to run
python tests / py3.12: linux-cpu (push) Waiting to run
typegen checks / typegen-checks (push) Waiting to run
uv lock checks / uv-lock-checks (push) Waiting to run
frontend checks / frontend-checks (push) Waiting to run
lfs checks / lfs-check (push) Waiting to run
python checks / python-checks (push) Waiting to run
python tests / py3.11: macos-default (push) Waiting to run
39 lines
895 B
YAML
39 lines
895 B
YAML
# Builds and uploads python build artifacts.
|
|
|
|
name: build wheel
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build-installer:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5 # expected run time: <2 min
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: setup python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.12'
|
|
cache: pip
|
|
cache-dependency-path: pyproject.toml
|
|
|
|
- name: install pypa/build
|
|
run: pip install --upgrade build
|
|
|
|
- name: setup frontend
|
|
uses: ./.github/actions/install-frontend-deps
|
|
|
|
- name: build wheel
|
|
id: build_wheel
|
|
run: ./scripts/build_wheel.sh
|
|
|
|
- name: upload python distribution artifact
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: dist
|
|
path: ${{ steps.build_wheel.outputs.DIST_PATH }}
|