mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
update torch==2.6.0 (#526)
This commit is contained in:
parent
93ff4d7b1f
commit
202409cc9a
4 changed files with 365 additions and 353 deletions
8
.github/workflows/e2e_archgw.yml
vendored
8
.github/workflows/e2e_archgw.yml
vendored
|
|
@ -9,6 +9,11 @@ on:
|
|||
jobs:
|
||||
e2e_archgw_tests:
|
||||
runs-on: ubuntu-latest-m
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
||||
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./tests/archgw
|
||||
|
|
@ -20,7 +25,8 @@ jobs:
|
|||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.12"
|
||||
python-version: ${{ matrix.python-version }}
|
||||
cache: "pip" # auto-caches based on requirements files
|
||||
|
||||
- name: build arch docker image
|
||||
run: |
|
||||
|
|
|
|||
7
.github/workflows/e2e_model_server.yml
vendored
7
.github/workflows/e2e_model_server.yml
vendored
|
|
@ -9,6 +9,10 @@ on:
|
|||
jobs:
|
||||
e2e_model_server_tests:
|
||||
runs-on: ubuntu-latest-m
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./tests/modelserver
|
||||
|
|
@ -20,7 +24,8 @@ jobs:
|
|||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.12"
|
||||
python-version: ${{ matrix.python-version }}
|
||||
cache: "pip" # auto-caches based on requirements files
|
||||
|
||||
- name: install poetry
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue