Adds MPNet to NormalizedConfig and ORTConfigManager #5802
Workflow file for this run
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: ONNX Runtime / Python - Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8, 3.9] | |
os: [ubuntu-20.04, windows-2019, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Free disk space | |
if: matrix.os == 'ubuntu-20.04' | |
run: | | |
df -h | |
sudo apt-get update | |
sudo apt-get purge -y '^apache.*' | |
sudo apt-get purge -y '^imagemagick.*' | |
sudo apt-get purge -y '^dotnet.*' | |
sudo apt-get purge -y '^aspnetcore.*' | |
sudo apt-get purge -y 'php.*' | |
sudo apt-get purge -y '^temurin.*' | |
sudo apt-get purge -y '^mysql.*' | |
sudo apt-get purge -y '^java.*' | |
sudo apt-get purge -y '^openjdk.*' | |
sudo apt-get purge -y microsoft-edge-stable google-cloud-cli azure-cli google-chrome-stable firefox powershell mono-devel | |
df -h | |
sudo apt-get autoremove -y >/dev/null 2>&1 | |
sudo apt-get clean | |
df -h | |
echo "https://github.com/actions/virtual-environments/issues/709" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
df -h | |
echo "remove big /usr/local" | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf /usr/local/lib/android >/dev/null 2>&1 | |
df -h | |
echo "remove /usr/share leftovers" | |
sudo rm -rf /usr/share/dotnet/sdk > /dev/null 2>&1 | |
sudo rm -rf /usr/share/dotnet/shared > /dev/null 2>&1 | |
sudo rm -rf /usr/share/swift > /dev/null 2>&1 | |
df -h | |
echo "remove other leftovers" | |
sudo rm -rf /var/lib/mysql > /dev/null 2>&1 | |
sudo rm -rf /home/runner/.dotnet > /dev/null 2>&1 | |
sudo rm -rf /home/runneradmin/.dotnet > /dev/null 2>&1 | |
sudo rm -rf /etc/skel/.dotnet > /dev/null 2>&1 | |
sudo rm -rf /usr/local/.ghcup > /dev/null 2>&1 | |
sudo rm -rf /usr/local/aws-cli > /dev/null 2>&1 | |
sudo rm -rf /usr/local/lib/node_modules > /dev/null 2>&1 | |
sudo rm -rf /usr/lib/heroku > /dev/null 2>&1 | |
sudo rm -rf /usr/local/share/chromium > /dev/null 2>&1 | |
df -h | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install .[tests,onnxruntime] | |
- name: Test with pytest | |
working-directory: tests | |
run: | | |
pytest -n auto -m "not run_in_series" --durations=0 -vs onnxruntime | |
pytest -m "run_in_series" --durations=0 onnxruntime |