Skip to content

Commit

Permalink
Clarify step names
Browse files Browse the repository at this point in the history
This changes "minimal" to "limited" in the human-readable step
names that characterize the omission of some dev tools from the
container environment in `pure-rust-build`.

- "Minimal" has connotations of being a lower bound (so no matter
  how much one has, if it is at least so much, it satisfies a
  minimal requirement), while "limited" emphasizes the restriction.

- `minimal` is a profile name for `rustup`, while no profile name
  coincides with or is strongly similar to "limited".
  • Loading branch information
EliahKagan committed Nov 17, 2024
1 parent f0c7d42 commit f45f23e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
apt-get update
apt-get install --no-install-recommends -y -- "${prerequisites[@]}"
shell: bash
- name: Verify that we are in an environment with minimal dev tools
- name: Verify that we are in an environment with limited dev tools
run: |
set -x
for pattern in cmake g++ libssl-dev make pkgconf pkg-config; do
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
find /usr/lib/gcc \( -name cc1 -o -name cc1plus \) \
-print -exec /usr/local/bin/wrap1 {} \;
- name: Build max-pure with minimal dev tools and log cc1
- name: Build max-pure with limited dev tools and log cc1
run: |
ln -s -- "/proc/$$/fd/1" ~/display # Bypass `cc1` redirection.
cargo install --debug --locked --no-default-features --features max-pure --path .
Expand Down

0 comments on commit f45f23e

Please sign in to comment.