We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e18d9bf commit 3f1d90cCopy full SHA for 3f1d90c
.github/workflows/e2e-tests.yaml
@@ -192,7 +192,9 @@ jobs:
192
run: |
193
kill $ENVTEST_START_PID
194
# give some time for the cluster to be stopped gracefully
195
- sleep 3
+ echo 'waiting process to be stopped...'
196
+ timeout 10s bash -c 'while ps $ENVTEST_START_PID; do sleep 1; done'
197
+ echo 'process stopped'
198
199
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
200
if: always()
0 commit comments