mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2025-06-08 03:36:37 +00:00
Release v1.0.5
This commit is contained in:
parent
402d025565
commit
23cd1093e2
8 changed files with 82 additions and 17 deletions
22
.github/workflows/ci.yml
vendored
22
.github/workflows/ci.yml
vendored
|
@ -17,12 +17,30 @@ jobs:
|
|||
- run: npm run test
|
||||
|
||||
install_stable:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macOS-latest
|
||||
- windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: ./
|
||||
- id: toolchain
|
||||
uses: ./
|
||||
with:
|
||||
toolchain: stable
|
||||
- name: Test toolchain outputs
|
||||
env:
|
||||
RUSTC: ${{ steps.toolchain.outputs.rustc }}
|
||||
RUSTC_HASH: ${{ steps.toolchain.outputs.rustc_hash }}
|
||||
CARGO: ${{ steps.toolchain.outputs.cargo }}
|
||||
RUSTUP: ${{ steps.toolchain.outputs.rustup }}
|
||||
run: |
|
||||
echo $RUSTC
|
||||
echo $RUSTC_HASH
|
||||
echo $CARGO
|
||||
echo $RUSTUP
|
||||
|
||||
install_nightly:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue