Skip to content

Commit

Permalink
Drop OS version from name
Browse files Browse the repository at this point in the history
  • Loading branch information
marbre committed Dec 13, 2024
1 parent 724a345 commit 402e2cc
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci-sharktank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,25 @@ concurrency:

jobs:
test:
name: "Unit Tests (${{ matrix.os }}, ${{ matrix.python-version }}, torch ${{ matrix.torch-version }})"
name: "Unit Tests (${{ matrix.name }}, ${{ matrix.python-version }}, torch ${{ matrix.torch-version }})"
strategy:
matrix:
python-version: ["3.11", "3.12"]
torch-version: ["2.3.0", "2.4.1", "2.5.1"]
os: [ubuntu-24.04]
name: ["Ubuntu"]
include:
- os: windows-2022
- name: Ubuntu
runs-on: ubuntu-24.04
- name: Windows
runs-on: windows-2022
python-version: "3.11"
torch-version: "2.3.0"
exclude:
- python-version: "3.12"
# `torch.compile` requires torch>=2.4.0 for Python 3.12+
torch-version: "2.3.0"
fail-fast: false
runs-on: ${{matrix.os}}
runs-on: ${{matrix.runs-os}}
defaults:
run:
shell: bash
Expand Down

0 comments on commit 402e2cc

Please sign in to comment.