Skip to content

Commit

Permalink
Use rust stable toolchain in CI (#1083)
Browse files Browse the repository at this point in the history
  • Loading branch information
eike-hass authored Nov 22, 2022
1 parent 5088112 commit f2bdd3b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 107 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Build
Expand Down
53 changes: 0 additions & 53 deletions .github/workflows/coverage.yml

This file was deleted.

4 changes: 3 additions & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ jobs:

steps:
- uses: actions/checkout@v2

# we use nightly to get access to advanced format capabilities
- name: Install rustfmt with nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-06-30
toolchain: nightly
override: true
components: rustfmt

Expand Down
53 changes: 0 additions & 53 deletions .github/workflows/scripts/coverage.sh

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/shared-build-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
with:
toolchain: stable
target: wasm32-unknown-unknown
override: true

# Download a pre-compiled wasm-bindgen binary.
- name: Install wasm-bindgen-cli
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
yarn install --immutable
yarn build
# docs.rs also uses nightly so it makes sense to mirror that
- name: Install Rust nightly toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit f2bdd3b

Please sign in to comment.