onnxruntime #17
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: onnxruntime | |
on: | |
workflow_dispatch: | |
inputs: | |
onnxruntimeBranch: | |
description: "onnxruntime branch to build from" | |
required: true | |
default: "v1.19.0" | |
jobs: | |
build_wheels: | |
name: Build onnxruntime wheel for | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python_version: ["3.10", "3.11"] | |
steps: | |
- name: Build Wheel | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: quay.io/pypa/manylinux2010_x86_64 #We use the outdated manylinux2010 to build the wheels to ensure compatibility with older systems (e.g. CentOS 6 and glibc 2.12) | |
shell: bash | |
run: | | |
yum install -y wget centos-release-scl devtoolset-9 | |
export PATH=/opt/rh/devtoolset-9/root/usr/bin:$PATH | |
wget https://github.com/conda-forge/miniforge/releases/download/24.3.0-0/Mambaforge-24.3.0-0-Linux-x86_64.sh | |
chmod +x ./Mambaforge-24.3.0-0-Linux-x86_64.sh | |
./Mambaforge-24.3.0-0-Linux-x86_64.sh -b | |
export PATH=/github/home/mambaforge/bin/:$PATH | |
mamba create -n pyenv python==${{ matrix.python_version }} -y | |
mamba init | |
source ~/.bashrc | |
mamba activate pyenv | |
pip install cmake numpy==2.0 onnx packaging wheel auditwheel sympy pytest | |
git clone --depth 1 --branch v1.19.0 --recursive https://github.com/Microsoft/onnxruntime.git | |
cd onnxruntime/ | |
./build.sh --config Release --build_shared_lib --parallel --compile_no_warning_as_error --skip_submodule_sync --allow_running_as_root --build_wheel | |
sudo dnf -y install nodejs20 | |
mv /opt/actions-runner/externals/node20/bin/node /opt/actions-runner/externals/node20/bin/node-bak | |
ln -s /usr/bin/node-20 /opt/actions-runner/externals/node20/bin/node | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: wheels | |
path: /onnxruntime/build/Linux/Release/dist/*.whl | |
publish: | |
name: Publish wheels to pypi.scm.io | |
needs: [build_wheels] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get wheels | |
uses: actions/download-artifact@v3 | |
with: | |
name: wheels | |
path: dist | |
- name: Publish to pypy.scm.io | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: ${{ secrets.PYPI_SCM_USERNAME }} | |
password: ${{ secrets.PYPI_SCM_PASSWORD }} | |
repository-url: https://pypi.scm.io/simple/ | |
skip-existing: true |