mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-14 13:36:34 +02:00
Merge pull request #66 from dtolnay/sparseregistry
Set CARGO_REGISTRIES_CRATES_IO_PROTOCOL
This commit is contained in:
commit
785525df07
1 changed files with 5 additions and 3 deletions
|
@ -98,9 +98,11 @@ runs:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
: enable Cargo sparse registry # ignored by stable cargo
|
: enable Cargo sparse registry # except on 1.66 and 1.67, on which it is unstable
|
||||||
if [ -z ${CARGO_UNSTABLE_SPARSE_REGISTRY+set} ]; then
|
if [ -z ${CARGO_REGISTRIES_CRATES_IO_PROTOCOL+set} ] \
|
||||||
echo CARGO_UNSTABLE_SPARSE_REGISTRY=true >> $GITHUB_ENV
|
&& ! rustc +${{steps.parse.outputs.toolchain}} --version --verbose | grep -q '^release: 1\.6[67]\.'
|
||||||
|
then
|
||||||
|
echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue