Space out workflow steps

This commit is contained in:
David Tolnay 2022-07-20 13:23:41 -07:00
parent c517642e90
commit 6af6d2b8ea
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -34,6 +34,7 @@ runs:
targets: ${{inputs.target}} targets: ${{inputs.target}}
components: ${{inputs.components}} components: ${{inputs.components}}
shell: bash shell: bash
- run: | - run: |
: install rustup if needed : install rustup if needed
if ! command -v rustup &> /dev/null ; then if ! command -v rustup &> /dev/null ; then
@ -42,11 +43,14 @@ runs:
fi fi
if: runner.os != 'Windows' if: runner.os != 'Windows'
shell: bash shell: bash
- name: rustup toolchain install ${{inputs.toolchain}} - name: rustup toolchain install ${{inputs.toolchain}}
run: rustup toolchain install ${{inputs.toolchain}}${{steps.flags.outputs.targets}}${{steps.flags.outputs.components}} --profile minimal${{steps.flags.outputs.downgrade}} --no-self-update run: rustup toolchain install ${{inputs.toolchain}}${{steps.flags.outputs.targets}}${{steps.flags.outputs.components}} --profile minimal${{steps.flags.outputs.downgrade}} --no-self-update
shell: bash shell: bash
- run: rustup default ${{inputs.toolchain}} - run: rustup default ${{inputs.toolchain}}
shell: bash shell: bash
- id: rustc-version - id: rustc-version
run: | run: |
: create cachekey : create cachekey
@ -54,5 +58,6 @@ runs:
HASH=$(rustc +${{inputs.toolchain}} --version --verbose | sed -ne 's/^commit-hash: //p') HASH=$(rustc +${{inputs.toolchain}} --version --verbose | sed -ne 's/^commit-hash: //p')
echo "::set-output name=cachekey::$(echo $DATE$HASH | head -c12)" echo "::set-output name=cachekey::$(echo $DATE$HASH | head -c12)"
shell: bash shell: bash
- run: rustc +${{inputs.toolchain}} --version --verbose - run: rustc +${{inputs.toolchain}} --version --verbose
shell: bash shell: bash