From f56a5dd7ef51ba1cad01b335579a9c6b83c67f59 Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Wed, 1 Nov 2023 13:59:50 +0000 Subject: [PATCH] Add bench example to ci --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82415ae3..b294478d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,6 +62,8 @@ jobs: run: cd esp-wifi && cargo b${{ matrix.chip }} --no-default-features --features=async,wifi,esp-now,embassy-net,defmt,${{ matrix.chip }}-hal/embassy-time-timg0 - name: build (dhcp) run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=dhcp --features=wifi + - name: build (bench) + run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=bench --features=wifi - name: build (static_ip) run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=static_ip --features=wifi - name: build (esp_now) @@ -72,6 +74,8 @@ jobs: run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=embassy_esp_now_duplex --features=async,esp-now,${{ matrix.chip }}-hal/embassy-time-timg0 - name: build (embassy_dhcp) run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=embassy_dhcp --features=async,wifi,embassy-net,${{ matrix.chip }}-hal/embassy-time-timg0 + - name: build (embassy_bench) + run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=embassy_bench --features=async,wifi,embassy-net,${{ matrix.chip }}-hal/embassy-time-timg0 - name: build (embassy_access_point) run: cd esp-wifi && cargo b${{ matrix.chip }} --release --example=embassy_access_point --features=async,wifi,embassy-net,${{ matrix.chip }}-hal/embassy-time-timg0