Skip to content

onnxruntime

onnxruntime #14

Workflow file for this run

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
container:
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)
options: "--entrypoint /bin/bash"
strategy:
matrix:
python_version: ["3.10", "3.11"]
steps:
- name: Build Wheel
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 --build_wheel
- 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