You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The initial submodule clone fails due to a standard error we've been seeing a lot spuriously on Travis.
The submodule clone was auto-retried due to us wrapping it in travis_retry
Later on the build fails because the rust-installer submodule wasn't actually checked out
I have no idea why git submodule update --init doesn't seem to be updating the rust-installer submodule. It even seems to be cloning it, just not checking it out.
Presumably all other submodules succeeded to get cloned because the whole build succeeded otherwise...
The text was updated successfully, but these errors were encountered:
If submodule init fails, try from scratch
See #39051
I wonder if the cause could be some strange not-quite-checked-out state in a submodule. Try and fix this by force deinitialising everything before initialising (this will not throw away downloaded objects, git will skip them on the next attempt at cloning).
r? @alexcrichton
Oh right I actually saw this happen (saw the retry and then saw this logic kick in). The rust-installer build then finished successfully later. As a result I'm going to close this as I think it's taken care of (thanks @aidanhs!) and we can always reopen if it turns out to still be there.
I've seen a failure like https://travis-ci.org/rust-lang/rust/jobs/191773475 twice now where it looks like:
travis_retry
I have no idea why
git submodule update --init
doesn't seem to be updating the rust-installer submodule. It even seems to be cloning it, just not checking it out.Presumably all other submodules succeeded to get cloned because the whole build succeeded otherwise...
The text was updated successfully, but these errors were encountered: