-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
travis: Add timestamps to all build messages #40605
Conversation
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
Note that this PR also disables |
@bors r+ |
📌 Commit 4b25ccd has been approved by |
☔ The latest upstream changes (presumably #40575) made this pull request unmergeable. Please resolve the merge conflicts. |
4b25ccd
to
fd6cffc
Compare
@bors: r=brson |
📌 Commit fd6cffc has been approved by |
@bors r- https://travis-ci.org/rust-lang/rust/jobs/213256348
|
fd6cffc
to
499fb8d
Compare
@bors: r=brson |
📌 Commit 499fb8d has been approved by |
🔒 Merge conflict |
When debugging why builds are taking so long it's often useful to get the timestamp of all log messages as we're not always timing every tiny step of the build. I wrote a [utility] for prepending a relative timestamp from the start of a process which is now downloaded to the builders and is what we wrap the entire build invocation in. [utility]: https://github.com/alexcrichton/stamp-rs Closes rust-lang#40577
This makes travis problems more difficult to debug, so let's just enable more verbose logging.
@bors r=brson |
📌 Commit 2727866 has been approved by |
travis: Add timestamps to all build messages When debugging why builds are taking so long it's often useful to get the timestamp of all log messages as we're not always timing every tiny step of the build. I wrote a [utility] for prepending a relative timestamp from the start of a process which is now downloaded to the builders and is what we wrap the entire build invocation in. [utility]: https://github.com/alexcrichton/stamp-rs Closes #40577
☀️ Test successful - status-appveyor, status-travis |
When debugging why builds are taking so long it's often useful to get the
timestamp of all log messages as we're not always timing every tiny step of the
build. I wrote a utility for prepending a relative timestamp from the start of
a process which is now downloaded to the builders and is what we wrap the entire
build invocation in.
Closes #40577