From a92f8d506b07ab3538f1e16864ee4c678d26509e Mon Sep 17 00:00:00 2001 From: Grigori Fursin Date: Tue, 1 Oct 2024 17:39:44 +0200 Subject: [PATCH] * removed windows test for MLPerf (requires interaction) * added windows test for image classification --- .github/workflows/test-image-classification-onnx.yml | 6 +++--- .github/workflows/test-mlperf-inference-resnet50.yml | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-image-classification-onnx.yml b/.github/workflows/test-image-classification-onnx.yml index 62284a2a9..44f27a616 100644 --- a/.github/workflows/test-image-classification-onnx.yml +++ b/.github/workflows/test-image-classification-onnx.yml @@ -13,12 +13,12 @@ on: jobs: build: - - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - python-version: [ "3.12"] + os: [ubuntu-latest, windows-latest, macos-latest] + python-version: [ "3.10", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/test-mlperf-inference-resnet50.yml b/.github/workflows/test-mlperf-inference-resnet50.yml index 69ce2722a..acbe88b90 100644 --- a/.github/workflows/test-mlperf-inference-resnet50.yml +++ b/.github/workflows/test-mlperf-inference-resnet50.yml @@ -27,7 +27,9 @@ jobs: implementation: cpp - os: macos-latest backend: tf -# - os: windows-latest + - os: windows-latest +# MLPerf requires interaction when installing LLVM on Windows - that's why we excluded it here + steps: - uses: actions/checkout@v4