mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-14 13:36:34 +02:00
Tweak sparse registry conditional
This commit is contained in:
parent
b17a489743
commit
138ed95c4e
1 changed files with 4 additions and 4 deletions
|
@ -100,11 +100,11 @@ runs:
|
||||||
- run: |
|
- run: |
|
||||||
: enable Cargo sparse registry
|
: enable Cargo sparse registry
|
||||||
# except on 1.66 and 1.67, on which it is unstable
|
# except on 1.66 and 1.67, on which it is unstable
|
||||||
if [ -z ${CARGO_REGISTRIES_CRATES_IO_PROTOCOL+set} ] \
|
if [ -z ${CARGO_REGISTRIES_CRATES_IO_PROTOCOL+set} ]; then
|
||||||
&& ! rustc +${{steps.parse.outputs.toolchain}} --version --verbose | grep -q '^release: 1\.6[67]\.'
|
if rustc +${{steps.parse.outputs.toolchain}} --version --verbose | not grep -q '^release: 1\.6[67]\.'; then
|
||||||
then
|
|
||||||
echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse >> $GITHUB_ENV
|
echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- run: rustc +${{steps.parse.outputs.toolchain}} --version --verbose
|
- run: rustc +${{steps.parse.outputs.toolchain}} --version --verbose
|
||||||
|
|
Loading…
Reference in a new issue