diff --git a/.github/workflows/self-push.yml b/.github/workflows/self-push.yml index 9c0d4aee8d..923e82b59d 100644 --- a/.github/workflows/self-push.yml +++ b/.github/workflows/self-push.yml @@ -31,7 +31,7 @@ jobs: - run: nvidia-smi - name: Kill any run-away pytest processes - run: pkill -f tests; pkill -f examples + run: (pkill -f tests; pkill -f examples) || echo "no zombies" - name: Loading cache. uses: actions/cache@v2 @@ -106,7 +106,7 @@ jobs: - run: nvidia-smi - name: Kill any run-away pytest processes - run: pkill -f tests; pkill -f examples + run: (pkill -f tests; pkill -f examples) || echo "no zombies" - name: Loading cache. uses: actions/cache@v2 @@ -179,7 +179,7 @@ jobs: - run: nvidia-smi - name: Kill any run-away pytest processes - run: pkill -f tests; pkill -f examples + run: (pkill -f tests; pkill -f examples) || echo "no zombies" - name: Loading cache. uses: actions/cache@v2 @@ -243,7 +243,7 @@ jobs: - run: nvidia-smi - name: Kill any run-away pytest processes - run: pkill -f tests; pkill -f examples + run: (pkill -f tests; pkill -f examples) || echo "no zombies" - name: Loading cache. uses: actions/cache@v2 diff --git a/.github/workflows/self-scheduled.yml b/.github/workflows/self-scheduled.yml index 089acf7c08..632ca297e3 100644 --- a/.github/workflows/self-scheduled.yml +++ b/.github/workflows/self-scheduled.yml @@ -35,7 +35,7 @@ jobs: - run: nvidia-smi - name: Kill any run-away pytest processes - run: pkill -f tests; pkill -f examples + run: (pkill -f tests; pkill -f examples) || echo "no zombies" - name: Create new python env (on self-hosted runners we have to handle isolation ourselves) if: steps.cache.outputs.cache-hit != 'true' @@ -133,7 +133,7 @@ jobs: - run: nvidia-smi - name: Kill any run-away pytest processes - run: pkill -f tests; pkill -f examples + run: (pkill -f tests; pkill -f examples) || echo "no zombies" - name: Create new python env (on self-hosted runners we have to handle isolation ourselves) @@ -217,7 +217,7 @@ jobs: - run: nvidia-smi - name: Kill any run-away pytest processes - run: pkill -f tests; pkill -f examples + run: (pkill -f tests; pkill -f examples) || echo "no zombies" - name: Create new python env (on self-hosted runners we have to handle isolation ourselves) if: steps.cache.outputs.cache-hit != 'true' @@ -316,7 +316,7 @@ jobs: - run: nvidia-smi - name: Kill any run-away pytest processes - run: pkill -f tests; pkill -f examples + run: (pkill -f tests; pkill -f examples) || echo "no zombies" - name: Create new python env (on self-hosted runners we have to handle isolation ourselves) if: steps.cache.outputs.cache-hit != 'true'