| f7f9176e | 14-Oct-2025 |
Alex Crichton <[email protected]> |
Shrink job names on CI (#11859)
* Shrink job names on CI
I find GitHub's UI a bit maddening where it provides maybe 10 characters of description of a job before it cuts it off. Most of the UI also
Shrink job names on CI (#11859)
* Shrink job names on CI
I find GitHub's UI a bit maddening where it provides maybe 10 characters of description of a job before it cuts it off. Most of the UI also doesn't display the name when you otherwise mouse over it or similar, so the only way to actually view a full job name is to click on it which takes you to a whole different page that loses the context of where you were on the prior page. This has bugged me enough that I want to do something about it.
This commit shrinks the size of job names on CI to being a bit more terse. For example `Test MSRV on Linux x86_64` is now `Test MSRV`. Additionally the full set of crates being tested is no longer in the job name but instead it just has a bucket number (e.g. `1/5`). My hope is that this makes it more predictable over time what the job name is (jobs don't shuffle names if we add crates) and it's also easier to see in CI (less is cut off hopefully).
* Fix name
show more ...
|
| 5199b1c9 | 03-Oct-2025 |
Chris Fallin <[email protected]> |
wasmtime-unwinder: factor out `visit_frames` inner loop to an iterator. (#11783)
* wasmtime-unwinder: factor out `visit_frames` inner loop to an iterator.
This will be desirable to allow a lazy sta
wasmtime-unwinder: factor out `visit_frames` inner loop to an iterator. (#11783)
* wasmtime-unwinder: factor out `visit_frames` inner loop to an iterator.
This will be desirable to allow a lazy stack-walk for our guest debugging API. It provides a `frame_iterator()` function that produces an iterator over frames in one Wasm activation, factoring out the heart of `visit_frames`; `visit_frames` is now a thin wrapper around this iterator. No functional change expected.
* Review feedback: add additional safety conditions on iterator.
* Use beta rust for x86_64-macos
prtest:full
---------
Co-authored-by: Alex Crichton <[email protected]>
show more ...
|