diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2024-10-19 11:02:35 +0530 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2024-10-25 07:33:04 +0000 |
commit | ce4104cd7002e7014b780c72b9cb5220d3559443 (patch) | |
tree | 9a9a093c91503afc6432b74199570766e95d8b0e | |
parent | ce05997ef2c59fb0ac19456bb1830d33254682b1 (diff) |
ci: Cover more rust-related spurious failures on msvc
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1600>
-rwxr-xr-x | ci/run_retry.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/run_retry.sh b/ci/run_retry.sh index 6aa7e0f1..bdf761c3 100755 --- a/ci/run_retry.sh +++ b/ci/run_retry.sh @@ -7,7 +7,9 @@ ERRORS=( "Warning: An error occurred while preparing SDK package Android SDK Tools: Connection reset." "The Xcode build system has crashed. Build again to continue." "libc++abi: terminating with uncaught exception" - "failed to rename archive file: Access is denied. (os error 5)" + # https://github.com/rust-lang/rust/issues/127883#issuecomment-2290594194 + "Access is denied (os error 5)" + "LINK : fatal error LNK1104: cannot open file" ) RETRIES=3 LOGFILE="/tmp/logfile.txt" |