From c7247e7c9b24c297e200257238124859e6cb5935 Mon Sep 17 00:00:00 2001 From: ydshieh Date: Thu, 30 May 2024 22:11:11 +0200 Subject: [PATCH] build --- .github/workflows/self-nightly-past-ci-caller.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/self-nightly-past-ci-caller.yml b/.github/workflows/self-nightly-past-ci-caller.yml index 92e5b9153341aa..30d65f1aa161dc 100644 --- a/.github/workflows/self-nightly-past-ci-caller.yml +++ b/.github/workflows/self-nightly-past-ci-caller.yml @@ -34,7 +34,7 @@ jobs: run_past_ci_pytorch_1-13: name: PyTorch 1.13 - if: needs.get_number.outputs.run_number == 0 && (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'build-cleanup-docker-build'))) + if: (needs.get_number.outputs.run_number == 0) && (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'build-cleanup-docker-build'))) uses: ./.github/workflows/self-past-caller.yml with: framework: pytorch @@ -44,7 +44,7 @@ jobs: run_past_ci_pytorch_1-12: name: PyTorch 1.12 - if: needs.get_number.outputs.run_number == 1 && (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'build-cleanup-docker-build'))) + if: (needs.get_number.outputs.run_number == 1) && (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'build-cleanup-docker-build'))) needs: [run_past_ci_pytorch_1-13] uses: ./.github/workflows/self-past.yml with: @@ -55,7 +55,7 @@ jobs: run_past_ci_pytorch_1-11: name: PyTorch 1.11 - if: needs.get_number.outputs.run_number == 2 && (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci'))) + if: (needs.get_number.outputs.run_number == 2) && (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'build-cleanup-docker-build'))) needs: [run_past_ci_pytorch_1-12] uses: ./.github/workflows/self-past.yml with: