Combine CARGO_HOME choice into a single step

This commit is contained in:
David Tolnay 2024-05-01 09:06:11 -07:00
parent b004a9e513
commit e4e1c59547
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -68,12 +68,7 @@ runs:
if: runner.os != 'Windows'
shell: bash
- run: echo CARGO_HOME=${CARGO_HOME:-$HOME/.cargo} >> $GITHUB_ENV
if: runner.os != 'Windows'
shell: bash
- run: echo CARGO_HOME=${CARGO_HOME:-$USERPROFILE/.cargo} >> $GITHUB_ENV
if: runner.os == 'Windows'
- run: echo CARGO_HOME=${CARGO_HOME:-${{runner.os == 'Windows' && '$USERPROFILE' || '$HOME'}}/.cargo} >> $GITHUB_ENV
shell: bash
- name: rustup toolchain install ${{steps.parse.outputs.toolchain}}