Skip to content

Commit

Permalink
Toolchain tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani committed Sep 5, 2024
1 parent 45cdea5 commit a205cef
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ jobs:
with:
default: true
buildtargets: esp32s3
version: "1.80.0"
ldproxy: false
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-06-01
components: clippy, rustfmt, rust-src
- uses: Swatinem/rust-cache@v2

- uses: cargo-bins/cargo-binstall@main
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ jobs:
with:
default: true
buildtargets: esp32s3
version: "1.80.0"
ldproxy: false
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-06-01
components: clippy, rustfmt, rust-src
- uses: Swatinem/rust-cache@v2

- name: format check
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
with:
default: true
buildtargets: esp32s3
version: "1.80.0"
ldproxy: false
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-06-01
components: clippy, rustfmt, rust-src
- uses: Swatinem/rust-cache@v2

- uses: cargo-bins/cargo-binstall@main
Expand Down
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ impl SocConfig {
fn toolchain(self) -> &'static str {
match self {
SocConfig::S3 => "esp",
SocConfig::C6 => "nightly-2024-06-01-x86_64-pc-windows-msvc",
SocConfig::C6 => "nightly-2024-06-01",
}
}
}
Expand Down

0 comments on commit a205cef

Please sign in to comment.