upgrade to 1.89.0.0 for CI (#4102)

* upgrade to 1.89.0.0 for CI

* regenerate baseline

* Resolve clippy errors

---------

Co-authored-by: Jesse Braham <jesse@beta7.io>
This commit is contained in:
Scott Mabin 2025-09-16 12:53:59 +01:00 committed by GitHub
parent b3a17079e8
commit 3f024529e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
13 changed files with 16 additions and 16 deletions

View File

@ -71,7 +71,7 @@ jobs:
# Install the Rust toolchain for Xtensa devices: # Install the Rust toolchain for Xtensa devices:
- uses: esp-rs/xtensa-toolchain@v1.6 - uses: esp-rs/xtensa-toolchain@v1.6
with: with:
version: 1.88.0.0 version: 1.89.0.0
# Install the Rust stable toolchain for RISC-V devices: # Install the Rust stable toolchain for RISC-V devices:
- uses: dtolnay/rust-toolchain@v1 - uses: dtolnay/rust-toolchain@v1

View File

@ -86,7 +86,7 @@ jobs:
- uses: esp-rs/xtensa-toolchain@v1.6 - uses: esp-rs/xtensa-toolchain@v1.6
with: with:
default: true default: true
version: 1.88.0.0 version: 1.89.0.0
# xtensa-toolchain installs rustup and a basic toolchain, but doesn't install rust-src # xtensa-toolchain installs rustup and a basic toolchain, but doesn't install rust-src
- name: rust-src - name: rust-src

View File

@ -124,7 +124,7 @@ jobs:
with: with:
buildtargets: ${{ matrix.target.soc }} buildtargets: ${{ matrix.target.soc }}
default: true default: true
version: 1.88.0.0 version: 1.89.0.0
- name: Build tests - name: Build tests
run: cargo xtask build tests ${{ matrix.target.soc }} run: cargo xtask build tests ${{ matrix.target.soc }}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -189,10 +189,10 @@ impl<'d> Camera<'d> {
) )
.map_err(ConfigError::Clock)?; .map_err(ConfigError::Clock)?;
if let Some(value) = config.line_interrupt { if let Some(value) = config.line_interrupt
if value > 0b0111_1111 { && value > 0b0111_1111
return Err(ConfigError::LineInterrupt); {
} return Err(ConfigError::LineInterrupt);
} }
self.regs().cam_ctrl().write(|w| { self.regs().cam_ctrl().write(|w| {

View File

@ -151,10 +151,10 @@ impl<Tm: TouchMode, Dm: DriverMode> Touch<'_, Tm, Dm> {
// Default nr of sleep cycles from IDF // Default nr of sleep cycles from IDF
let mut sleep_cyc = 0x1000; let mut sleep_cyc = 0x1000;
if let Some(config) = config { if let Some(config) = config
if let Some(slp) = config.sleep_cycles { && let Some(slp) = config.sleep_cycles
sleep_cyc = slp; {
} sleep_cyc = slp;
} }
Self::initialize_common(config); Self::initialize_common(config);
@ -201,10 +201,10 @@ impl<'d> Touch<'d, OneShot, Blocking> {
// Default nr of sleep cycles from IDF // Default nr of sleep cycles from IDF
let mut sleep_cyc = 0x1000; let mut sleep_cyc = 0x1000;
if let Some(config) = config { if let Some(config) = config
if let Some(slp) = config.sleep_cycles { && let Some(slp) = config.sleep_cycles
sleep_cyc = slp; {
} sleep_cyc = slp;
} }
Self::initialize_common(config); Self::initialize_common(config);

View File

@ -35,7 +35,7 @@ reqwest = { version = "0.12.12", features = [
], optional = true } ], optional = true }
# This pulls a gazillion crates - don't include it by default # This pulls a gazillion crates - don't include it by default
cargo-semver-checks = { version = "0.41.0", optional = true } cargo-semver-checks = { version = "0.43.0", optional = true }
flate2 = { version = "1.1.1", optional = true } flate2 = { version = "1.1.1", optional = true }
temp-file = { version = "0.1.9", optional = true } temp-file = { version = "0.1.9", optional = true }