Skip to content

Commit

Permalink
install all toolchains for local makefile pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
wmmc88 committed Apr 5, 2024
1 parent f7f86f1 commit 16c4d9c
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/local-development-makefile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,18 @@ jobs:
winget install --disable-interactivity --source winget --exact --id ${{ matrix.wdk }}
}
- name: Install Rust Toolchain (${{ matrix.target_triple }})
uses: dtolnay/rust-toolchain@stable # Use stable since local makefile pins toolchain versions anyways
- name: Install Nightly Rust Toolchain (${{ matrix.target_triple }})
uses: dtolnay/rust-toolchain@nightly
with:
targets: ${{ matrix.target_triple }}

- name: Install Beta Rust Toolchain (${{ matrix.target_triple }})
uses: dtolnay/rust-toolchain@beta
with:
targets: ${{ matrix.target_triple }}

- name: Install Stable Rust Toolchain (${{ matrix.target_triple }})
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target_triple }}

Expand Down

0 comments on commit 16c4d9c

Please sign in to comment.