From 351cdbdfdc8261505305c2de5bfa78ce1f9b0653 Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Fri, 6 May 2022 16:45:17 +0200 Subject: [PATCH] Fix self-push CI report path in cat (#17111) * fix report cat path * fix report cat path Co-authored-by: ydshieh --- .github/workflows/self-nightly-scheduled.yml | 14 +++++++------- .github/workflows/self-push.yml | 16 ++++++++-------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/self-nightly-scheduled.yml b/.github/workflows/self-nightly-scheduled.yml index 5acb21debf..a2ac3398f6 100644 --- a/.github/workflows/self-nightly-scheduled.yml +++ b/.github/workflows/self-nightly-scheduled.yml @@ -49,7 +49,7 @@ jobs: - name: Failure short reports if: ${{ always() }} - run: cat reports/tests_torch_gpu_failures_short.txt + run: cat reports/tests_torch_gpu/failures_short.txt - name: Run examples tests on GPU if: ${{ always() }} @@ -65,7 +65,7 @@ jobs: - name: Failure short reports if: ${{ always() }} - run: cat reports/examples_torch_gpu_failures_short.txt + run: cat reports/examples_torch_gpu/failures_short.txt - name: Run all pipeline tests on GPU if: ${{ always() }} @@ -76,7 +76,7 @@ jobs: - name: Failure short reports if: ${{ always() }} - run: cat reports/tests_torch_pipeline_gpu_failures_short.txt + run: cat reports/tests_torch_pipeline_gpu/failures_short.txt - name: Test suite reports artifacts if: ${{ always() }} @@ -119,7 +119,7 @@ jobs: - name: Failure short reports if: ${{ always() }} - run: cat reports/tests_torch_multi_gpu_failures_short.txt + run: cat reports/tests_torch_multi_gpu/failures_short.txt - name: Run all pipeline tests on GPU if: ${{ always() }} @@ -130,7 +130,7 @@ jobs: - name: Failure short reports if: ${{ always() }} - run: cat reports/tests_torch_pipeline_multi_gpu_failures_short.txt + run: cat reports/tests_torch_pipeline_multi_gpu/failures_short.txt - name: Test suite reports artifacts if: ${{ always() }} @@ -171,7 +171,7 @@ jobs: - name: Failure short reports if: ${{ always() }} - run: cat reports/tests_torch_cuda_extensions_gpu_failures_short.txt + run: cat reports/tests_torch_cuda_extensions_gpu/failures_short.txt - name: Test suite reports artifacts if: ${{ always() }} @@ -214,7 +214,7 @@ jobs: - name: Failure short reports if: ${{ always() }} - run: cat reports/tests_torch_cuda_extensions_multi_gpu_failures_short.txt + run: cat reports/tests_torch_cuda_extensions_multi_gpu/failures_short.txt - name: Test suite reports artifacts if: ${{ always() }} diff --git a/.github/workflows/self-push.yml b/.github/workflows/self-push.yml index 31cf8a086a..9025999cfc 100644 --- a/.github/workflows/self-push.yml +++ b/.github/workflows/self-push.yml @@ -67,7 +67,7 @@ jobs: - name: Failure short reports if: ${{ failure() }} - run: cat reports/tests_torch_gpu_failures_short.txt + run: cat reports/tests_torch_gpu/failures_short.txt - name: Test suite reports artifacts if: ${{ always() }} @@ -127,7 +127,7 @@ jobs: # # - name: Failure short reports # if: ${{ failure() }} -# run: cat reports/tests_flax_gpu_failures_short.txt +# run: cat reports/tests_flax_gpu/failures_short.txt # # - name: Test suite reports artifacts # if: ${{ always() }} @@ -185,7 +185,7 @@ jobs: # # - name: Failure short reports # if: ${{ failure() }} -# run: cat reports/tests_tf_gpu_failures_short.txt +# run: cat reports/tests_tf_gpu/failures_short.txt # # - name: Test suite reports artifacts # if: ${{ always() }} @@ -242,7 +242,7 @@ jobs: - name: Failure short reports if: ${{ failure() }} - run: cat reports/tests_torch_multi_gpu_failures_short.txt + run: cat reports/tests_torch_multi_gpu/failures_short.txt - name: Test suite reports artifacts if: ${{ always() }} @@ -298,7 +298,7 @@ jobs: # # - name: Failure short reports # if: ${{ failure() }} -# run: cat reports/tests_flax_multi_gpu_failures_short.txt +# run: cat reports/tests_flax_multi_gpu/failures_short.txt # # - name: Test suite reports artifacts # if: ${{ always() }} @@ -356,7 +356,7 @@ jobs: # # - name: Failure short reports # if: ${{ failure() }} -# run: cat reports/tests_tf_multi_gpu_failures_short.txt +# run: cat reports/tests_tf_multi_gpu/failures_short.txt # # - name: Test suite reports artifacts # if: ${{ always() }} @@ -408,7 +408,7 @@ jobs: - name: Failure short reports if: ${{ failure() }} - run: cat reports/tests_torch_cuda_extensions_gpu_failures_short.txt + run: cat reports/tests_torch_cuda_extensions_gpu/failures_short.txt - name: Test suite reports artifacts if: ${{ always() }} @@ -462,7 +462,7 @@ jobs: - name: Failure short reports if: ${{ failure() }} - run: cat reports/tests_torch_cuda_extensions_multi_gpu_failures_short.txt + run: cat reports/tests_torch_cuda_extensions_multi_gpu/failures_short.txt - name: Test suite reports artifacts if: ${{ always() }}