File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 31
31
- run : nvidia-smi
32
32
33
33
- name : Kill any run-away pytest processes
34
- run : pkill -f tests; pkill -f examples
34
+ run : ( pkill -f tests; pkill -f examples) || echo "no zombies"
35
35
36
36
- name : Loading cache.
37
37
uses : actions/cache@v2
@@ -106,7 +106,7 @@ jobs:
106
106
- run : nvidia-smi
107
107
108
108
- name : Kill any run-away pytest processes
109
- run : pkill -f tests; pkill -f examples
109
+ run : ( pkill -f tests; pkill -f examples) || echo "no zombies"
110
110
111
111
- name : Loading cache.
112
112
uses : actions/cache@v2
@@ -179,7 +179,7 @@ jobs:
179
179
- run : nvidia-smi
180
180
181
181
- name : Kill any run-away pytest processes
182
- run : pkill -f tests; pkill -f examples
182
+ run : ( pkill -f tests; pkill -f examples) || echo "no zombies"
183
183
184
184
- name : Loading cache.
185
185
uses : actions/cache@v2
@@ -243,7 +243,7 @@ jobs:
243
243
- run : nvidia-smi
244
244
245
245
- name : Kill any run-away pytest processes
246
- run : pkill -f tests; pkill -f examples
246
+ run : ( pkill -f tests; pkill -f examples) || echo "no zombies"
247
247
248
248
- name : Loading cache.
249
249
uses : actions/cache@v2
Original file line number Diff line number Diff line change 35
35
- run : nvidia-smi
36
36
37
37
- name : Kill any run-away pytest processes
38
- run : pkill -f tests; pkill -f examples
38
+ run : ( pkill -f tests; pkill -f examples) || echo "no zombies"
39
39
40
40
- name : Create new python env (on self-hosted runners we have to handle isolation ourselves)
41
41
if : steps.cache.outputs.cache-hit != 'true'
@@ -133,7 +133,7 @@ jobs:
133
133
- run : nvidia-smi
134
134
135
135
- name : Kill any run-away pytest processes
136
- run : pkill -f tests; pkill -f examples
136
+ run : ( pkill -f tests; pkill -f examples) || echo "no zombies"
137
137
138
138
139
139
- name : Create new python env (on self-hosted runners we have to handle isolation ourselves)
@@ -217,7 +217,7 @@ jobs:
217
217
- run : nvidia-smi
218
218
219
219
- name : Kill any run-away pytest processes
220
- run : pkill -f tests; pkill -f examples
220
+ run : ( pkill -f tests; pkill -f examples) || echo "no zombies"
221
221
222
222
- name : Create new python env (on self-hosted runners we have to handle isolation ourselves)
223
223
if : steps.cache.outputs.cache-hit != 'true'
@@ -316,7 +316,7 @@ jobs:
316
316
- run : nvidia-smi
317
317
318
318
- name : Kill any run-away pytest processes
319
- run : pkill -f tests; pkill -f examples
319
+ run : ( pkill -f tests; pkill -f examples) || echo "no zombies"
320
320
321
321
- name : Create new python env (on self-hosted runners we have to handle isolation ourselves)
322
322
if : steps.cache.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments