Fixed toolchain setup
This commit is contained in:
parent
9e9d031f4e
commit
470fbc6d1c
4 changed files with 6 additions and 0 deletions
.github/workflows
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -17,6 +17,7 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
profile: minimal
|
||||
- uses: actions-rs/cargo@v1
|
||||
with:
|
||||
|
|
1
.github/workflows/coverage.yml
vendored
1
.github/workflows/coverage.yml
vendored
|
@ -18,6 +18,7 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
profile: minimal
|
||||
- name: Run Tarpaulin
|
||||
uses: actions-rs/tarpaulin@v0.1
|
||||
|
|
1
.github/workflows/release.yml
vendored
1
.github/workflows/release.yml
vendored
|
@ -76,6 +76,7 @@ jobs:
|
|||
- name: Install Rust Toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
profile: minimal
|
||||
- name: Make release
|
||||
uses: ./.github/actions/make-windows-release
|
||||
|
|
3
.github/workflows/validate-install.yml
vendored
3
.github/workflows/validate-install.yml
vendored
|
@ -46,6 +46,7 @@ jobs:
|
|||
run: make preview PREFIX=/some/random/prefix
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
profile: minimal
|
||||
- name: Install
|
||||
run: sudo --preserve-env=PATH make install
|
||||
|
@ -77,6 +78,7 @@ jobs:
|
|||
run: make preview-xdg XDG_DATA_HOME=/my/own/xdg/home
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
profile: minimal
|
||||
- name: Install
|
||||
run: make install-xdg
|
||||
|
@ -99,6 +101,7 @@ jobs:
|
|||
- name: Install Rust Toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
profile: minimal
|
||||
- name: Make release
|
||||
uses: ./.github/actions/make-windows-release
|
||||
|
|
Loading…
Add table
Reference in a new issue