Skip to content
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

bootstrap: Get rid of tail_args in stream_cargo #106305

Merged
merged 3 commits into from
Dec 31, 2022
Merged

Commits on Dec 29, 2022

  1. Support x clean --stage 1 rustc_query_impl

    Previously, clean only supported `--stage 0` for specific crates.
    
    The new `crate_description` function generates a string that looks
    like
    ```
    : {rustc_query_impl}
    ```
    jyn514 committed Dec 29, 2022
    Configuration menu
    Copy the full SHA
    cbede85 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2022

  1. Use more consistent progress messages in bootstrap

    Before:
    ```
    Testing ["rustc_interface"] stage0 (aarch64-unknown-linux-gnu -> aarch64-unknown-linux-gnu)
    ```
    
    After:
    ```
    Testing {rustc_interface} stage0 (aarch64-unknown-linux-gnu -> aarch64-unknown-linux-gnu)
    ```
    
    Note there is a slight consistency between `build` and `test`: The
    former doesn't print "compiler artifacts". It would be annoying to fix
    and doesn't hurt anything, so I left it be.
    
    ```
    ; x t rustc_interface --stage 0 --dry-run
    Testing {rustc_interface} stage0 (aarch64-unknown-linux-gnu -> aarch64-unknown-linux-gnu)
    ; x b rustc_interface --stage 0 --dry-run
    Building {rustc_interface} stage0 compiler artifacts (aarch64-unknown-linux-gnu -> aarch64-unknown-linux-gnu)
    ```
    jyn514 committed Dec 30, 2022
    Configuration menu
    Copy the full SHA
    c8c849e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9dfe504 View commit details
    Browse the repository at this point in the history