From 52d2e6e8615bb5e8463e384c133a42e17f375469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Sun, 15 Jun 2025 13:00:44 +0200 Subject: [PATCH] ci: QEMU ESP32: Update espflash to 3.3.0 Includes libudev feature to not need external dep --- .github/workflows/build.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a177ce01949..7683b613f0a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -161,12 +161,6 @@ jobs: - name: Add Rust component llvm-tools-preview run: rustup component add llvm-tools-preview - - name: Install lubudev espflash dependency - if: contains(matrix.input.platform, 'esp32') - run: | - sudo apt update - sudo apt install -y libudev-dev - # Use precompiled binutils - name: Install cargo-binutils uses: taiki-e/install-action@v2 @@ -176,7 +170,7 @@ jobs: # Use precompiled if possible - name: Install espflash if: contains(matrix.input.platform, 'esp32') - run: cargo install espflash --version 3.1.0 --force + run: cargo install espflash --version 3.3.0 --force --no-default-features --features cli - name: Install esptool.py if: contains(matrix.input.platform, 'esp32')