diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-05-20 21:50:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 04:50:42 +0800 |
commit | 798841be82be847b357d2498d171f3a33de88b92 (patch) | |
tree | 939def1b95d5ce259dced98b7f89916112f2862c /.github/workflows/ufuzz.yml | |
parent | cc6eb4b15f798dc053c85154ea089a5d1a82bb0b (diff) | |
download | tracifyjs-798841be82be847b357d2498d171f3a33de88b92.tar.gz tracifyjs-798841be82be847b357d2498d171f3a33de88b92.zip |
improve job resilience (#3913)
Diffstat (limited to '.github/workflows/ufuzz.yml')
-rw-r--r-- | .github/workflows/ufuzz.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ufuzz.yml b/.github/workflows/ufuzz.yml index bbb9f1f8..84fd1ac7 100644 --- a/.github/workflows/ufuzz.yml +++ b/.github/workflows/ufuzz.yml @@ -18,7 +18,7 @@ jobs: git clone --branch v1.5.4 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs while ! timeout 60 bash -c '. ~/.nvs/nvs.sh add 10 && nvs use 10'; do cd ~/.nvs - git clean -xdf + while !(git clean -xdf); do echo "'git clean' failed - retrying..."; done cd - done . ~/.nvs/nvs.sh --version |