Skip to content

Commit

Permalink
Merge pull request #66 from dtolnay/sparseregistry
Browse files Browse the repository at this point in the history
Set CARGO_REGISTRIES_CRATES_IO_PROTOCOL
  • Loading branch information
dtolnay committed Feb 12, 2023
2 parents dd1a82b + de1aa37 commit 785525d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,11 @@ runs:
shell: bash
- run: |
: enable Cargo sparse registry # ignored by stable cargo
if [ -z ${CARGO_UNSTABLE_SPARSE_REGISTRY+set} ]; then
echo CARGO_UNSTABLE_SPARSE_REGISTRY=true >> $GITHUB_ENV
: enable Cargo sparse registry # except on 1.66 and 1.67, on which it is unstable
if [ -z ${CARGO_REGISTRIES_CRATES_IO_PROTOCOL+set} ] \
&& ! rustc +${{steps.parse.outputs.toolchain}} --version --verbose | grep -q '^release: 1\.6[67]\.'
then
echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse >> $GITHUB_ENV
fi
shell: bash
Expand Down

0 comments on commit 785525d

Please sign in to comment.