Skip to content

Commit f45f23e

Browse files
committed
Clarify step names
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".
1 parent f0c7d42 commit f45f23e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
apt-get update
4141
apt-get install --no-install-recommends -y -- "${prerequisites[@]}"
4242
shell: bash
43-
- name: Verify that we are in an environment with minimal dev tools
43+
- name: Verify that we are in an environment with limited dev tools
4444
run: |
4545
set -x
4646
for pattern in cmake g++ libssl-dev make pkgconf pkg-config; do
@@ -88,7 +88,7 @@ jobs:
8888
8989
find /usr/lib/gcc \( -name cc1 -o -name cc1plus \) \
9090
-print -exec /usr/local/bin/wrap1 {} \;
91-
- name: Build max-pure with minimal dev tools and log cc1
91+
- name: Build max-pure with limited dev tools and log cc1
9292
run: |
9393
ln -s -- "/proc/$$/fd/1" ~/display # Bypass `cc1` redirection.
9494
cargo install --debug --locked --no-default-features --features max-pure --path .

0 commit comments

Comments
 (0)