Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/self-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_torch_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_torch_gpu_durations.txt

- name: Run examples tests on GPU
if: ${{ always() }}
env:
Expand All @@ -67,6 +71,10 @@ jobs:
if: ${{ always() }}
run: cat reports/examples_torch_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/examples_torch_gpu_durations.txt

- name: Run all pipeline tests on GPU
if: ${{ always() }}
env:
Expand All @@ -78,6 +86,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_torch_pipeline_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_torch_pipeline_gpu_durations.txt

- name: Test suite reports artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -119,6 +131,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_flax_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_flax_gpu_durations.txt

- name: Test suite reports artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -163,6 +179,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_tf_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_tf_gpu_durations.txt

- name: Run all pipeline tests on GPU
if: ${{ always() }}
env:
Expand All @@ -176,6 +196,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_tf_pipeline_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_tf_pipeline_gpu_durations.txt

- name: Test suite reports artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -215,6 +239,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_torch_xla_tpu_failures_short.txt

- name: Tests durations
if: ${{ always() }}
run: cat reports/tests_torch_xla_tpu_durations.txt

- name: Test suite reports artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -258,6 +286,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_torch_multi_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_torch_multi_gpu_durations.txt

- name: Run all pipeline tests on GPU
if: ${{ always() }}
env:
Expand All @@ -269,6 +301,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_torch_pipeline_multi_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_torch_pipeline_multi_gpu_durations.txt

- name: Test suite reports artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -313,6 +349,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_tf_multi_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_tf_multi_gpu_durations.txt

- name: Run all pipeline tests on GPU
if: ${{ always() }}
env:
Expand All @@ -326,6 +366,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_tf_pipeline_multi_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_tf_pipeline_multi_gpu_durations.txt

- name: Test suite reports artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -403,6 +447,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_torch_cuda_extensions_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_torch_cuda_extensions_gpu_durations.txt

- name: Test suite reports artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -443,6 +491,10 @@ jobs:
if: ${{ always() }}
run: cat reports/tests_torch_cuda_extensions_multi_gpu_failures_short.txt

- name: Test durations
if: ${{ always() }}
run: cat reports/tests_torch_cuda_extensions_multi_gpu_durations.txt

- name: Test suite reports artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down