4343
4444 - name : Pipeline Tests Artifacts
4545 if : ${{ always() }}
46- uses : actions/upload-artifact@v2
46+ uses : actions/upload-artifact@v4
4747 with :
4848 name : test-pipelines.json
4949 path : reports
7272 run : |
7373 python -m venv /opt/venv && export PATH="/opt/venv/bin:$PATH"
7474 python -m uv pip install -e [quality,test]
75- python -m uv pip install accelerate@git+https://github.com/huggingface/accelerate.git
75+ pip uninstall accelerate -y && python -m uv pip install -U accelerate@git+https://github.com/huggingface/accelerate.git
7676 python -m uv pip install pytest-reportlog
7777 - name : Environment
7878 run : |
9595 cat reports/tests_pipeline_${{ matrix.module }}_cuda_failures_short.txt
9696 - name : Test suite reports artifacts
9797 if : ${{ always() }}
98- uses : actions/upload-artifact@v2
98+ uses : actions/upload-artifact@v4
9999 with :
100100 name : pipeline_${{ matrix.module }}_test_reports
101101 path : reports
@@ -130,8 +130,8 @@ jobs:
130130 run : |
131131 python -m venv /opt/venv && export PATH="/opt/venv/bin:$PATH"
132132 python -m uv pip install -e [quality,test]
133- python -m uv pip install accelerate@git+https://github.com/huggingface/accelerate.git
134133 python -m uv pip install peft@git+https://github.com/huggingface/peft.git
134+ pip uninstall accelerate -y && python -m uv pip install -U accelerate@git+https://github.com/huggingface/accelerate.git
135135 python -m uv pip install pytest-reportlog
136136 - name : Environment
137137 run : python utils/print_env.py
@@ -169,7 +169,7 @@ jobs:
169169
170170 - name : Test suite reports artifacts
171171 if : ${{ always() }}
172- uses : actions/upload-artifact@v2
172+ uses : actions/upload-artifact@v4
173173 with :
174174 name : torch_${{ matrix.module }}_cuda_test_reports
175175 path : reports
@@ -201,7 +201,7 @@ jobs:
201201 run : |
202202 python -m venv /opt/venv && export PATH="/opt/venv/bin:$PATH"
203203 python -m uv pip install -e [quality,test]
204- python -m uv pip install accelerate@git+https://github.com/huggingface/accelerate.git
204+ pip uninstall accelerate -y && python -m uv pip install -U accelerate@git+https://github.com/huggingface/accelerate.git
205205 python -m uv pip install pytest-reportlog
206206
207207 - name : Environment
@@ -225,7 +225,7 @@ jobs:
225225
226226 - name : Test suite reports artifacts
227227 if : ${{ always() }}
228- uses : actions/upload-artifact@v2
228+ uses : actions/upload-artifact@v4
229229 with :
230230 name : flax_tpu_test_reports
231231 path : reports
@@ -257,7 +257,7 @@ jobs:
257257 run : |
258258 python -m venv /opt/venv && export PATH="/opt/venv/bin:$PATH"
259259 python -m uv pip install -e [quality,test]
260- python -m uv pip install accelerate@git+https://github.com/huggingface/accelerate.git
260+ pip uninstall accelerate -y && python -m uv pip install -U accelerate@git+https://github.com/huggingface/accelerate.git
261261 python -m uv pip install pytest-reportlog
262262 - name : Environment
263263 run : python utils/print_env.py
@@ -280,9 +280,9 @@ jobs:
280280
281281 - name : Test suite reports artifacts
282282 if : ${{ always() }}
283- uses : actions/upload-artifact@v2
283+ uses : actions/upload-artifact@v4
284284 with :
285- name : ${{ matrix.config.report }}_test_reports
285+ name : tests_onnx_cuda_reports
286286 path : reports
287287
288288 - name : Generate Report and Notify Channel
@@ -340,7 +340,7 @@ jobs:
340340#
341341# - name: Test suite reports artifacts
342342# if: ${{ always() }}
343- # uses: actions/upload-artifact@v2
343+ # uses: actions/upload-artifact@v4
344344# with:
345345# name: torch_mps_test_reports
346346# path: reports
@@ -396,7 +396,7 @@ jobs:
396396#
397397# - name: Test suite reports artifacts
398398# if: ${{ always() }}
399- # uses: actions/upload-artifact@v2
399+ # uses: actions/upload-artifact@v4
400400# with:
401401# name: torch_mps_test_reports
402402# path: reports
0 commit comments