From 4516e4e1b5f74821aae0d3271c48d98e20a17b8b Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 19 Jan 2025 22:47:29 +0900 Subject: [PATCH] ci: Re-enable ESP-IDF check --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 862b159..b49f73f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,12 +53,11 @@ jobs: if: startsWith(matrix.rust, 'nightly') run: cargo check -Z features=dev_dep - name: Add rust-src - if: startsWith(matrix.rust, 'nightly') + if: startsWith(matrix.rust, 'nightly') && startsWith(matrix.os, 'ubuntu') run: rustup component add rust-src -# https://github.com/smol-rs/async-io/pull/144#issuecomment-1666927490 -# - name: Check selected Tier 3 targets -# if: startsWith(matrix.rust, 'nightly') && matrix.os == 'ubuntu-latest' -# run: cargo check -Z build-std --target=riscv32imc-esp-espidf + - name: Check ESP-IDF + if: startsWith(matrix.rust, 'nightly') && startsWith(matrix.os, 'ubuntu') + run: cargo check -Z build-std --target riscv32imc-esp-espidf - run: cargo test # Copied from: https://github.com/rust-lang/stacker/pull/19/files