-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Builds relatively frequently fail due to Cargo not running rustc #195
Comments
Hm if |
Is it possible that the system time is drifting or something like that? It feels unlikely but based on the fact that this isn't a consistent failure for the same benchmark and it seems to work locally and on Travis, at least mostly, I'm surprised what could be the cause here... the directory is in |
Hm are you sure the |
|
This seems to have been fixed by 31c4830, which made us retry running rustc/cargo if we didn't get output. I'm personally surprised that was enough, but it seems to have fixed the problem, so I'm happy enough. |
Is it possible that you ran into rust-lang/cargo#5918 ? |
We currently run
bash -c "find . -name '*.rs' | xargs touch"
but apparently that isn't enough in all cases, as we aren't running rustc sometimes which leads to the build failing as we then don't collect any stats. This happens pretty often, so I'm looking for a fix urgently.cc @alexcrichton -- is there a good way to force Cargo to build a particular package?
cc @nikomatsakis / @michaelwoerister (perf is basically ~down because of this, until we find a solution most builds are failing)
The text was updated successfully, but these errors were encountered: