CI: Add retry for yarn install (#83317)

Add retry for yarn install
This commit is contained in:
Andreas Christou
2024-02-23 16:15:28 +00:00
committed by GitHub
parent 19b1e71fee
commit 1477e658ec
2 changed files with 13 additions and 13 deletions

View File

@@ -37,7 +37,7 @@ def yarn_install_step():
"commands": [
# Python is needed to build `esfx`, which is needed by `msagl`
"apk add --update g++ make python3 && ln -sf /usr/bin/python3 /usr/bin/python",
"yarn install --immutable",
"yarn install --immutable || yarn install --immutable",
],
"depends_on": [],
}