From e9a0f10fa134ebc0cca63aec8a5259896758ee6a Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Sat, 13 Jan 2024 13:43:14 +0000 Subject: [PATCH] Build examples with ESP IDF master --- .github/workflows/ci-esp-idf-master.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-esp-idf-master.yml b/.github/workflows/ci-esp-idf-master.yml index 6f4fb753c..51facc46d 100644 --- a/.github/workflows/ci-esp-idf-master.yml +++ b/.github/workflows/ci-esp-idf-master.yml @@ -30,3 +30,6 @@ jobs: - name: Build | Compile Native ESP-IDF master no_std run: export RUSTFLAGS="--cfg espidf_time64"; export ESP_IDF_VERSION=master; export ESP_IDF_SDKCONFIG_DEFAULTS=$(pwd)/.github/configs/sdkconfig.defaults; cargo clean; cargo build --no-default-features --features esp-idf-sys --target riscv32imc-esp-espidf -Zbuild-std=std,panic_abort -Zbuild-std-features=panic_immediate_abort + + - name: Build | Compile Native ESP-IDF master examples + run: export RUSTFLAGS="--cfg espidf_time64"; export ESP_IDF_VERSION=master; export ESP_IDF_SDKCONFIG_DEFAULTS=$(pwd)/.github/configs/sdkconfig.defaults; cargo clean; cargo build --examples --features esp-idf-sys --target riscv32imc-esp-espidf -Zbuild-std=std,panic_abort -Zbuild-std-features=panic_immediate_abort