From 7bce887077b74497fd73a09e42d5c3145bbeb248 Mon Sep 17 00:00:00 2001 From: "Sergio R. Caprile" Date: Mon, 17 Apr 2023 16:59:36 -0300 Subject: [PATCH 1/2] Relax test time --- examples/stm32/nucleo-f746zg-freertos-tcp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/stm32/nucleo-f746zg-freertos-tcp/Makefile b/examples/stm32/nucleo-f746zg-freertos-tcp/Makefile index 1df6c631..6c674bb7 100644 --- a/examples/stm32/nucleo-f746zg-freertos-tcp/Makefile +++ b/examples/stm32/nucleo-f746zg-freertos-tcp/Makefile @@ -64,7 +64,7 @@ update: firmware.bin test update: CFLAGS_EXTRA += -DUART_DEBUG=USART1 test: update - curl --fail-with-body -su :$(VCON_API_KEY) $(DEVICE_URL)/tx?t=5 | tee /tmp/output.txt + curl --fail-with-body -su :$(VCON_API_KEY) $(DEVICE_URL)/tx?t=15 | tee /tmp/output.txt grep 'READY, IP:' /tmp/output.txt # Check for network init grep 'MQTT connected' /tmp/output.txt # Check for MQTT connection success From b57648df147e73bb463ba5663cca7831068a44d5 Mon Sep 17 00:00:00 2001 From: "Sergio R. Caprile" Date: Mon, 17 Apr 2023 17:02:52 -0300 Subject: [PATCH 2/2] Update test.yml --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5677c9b7..45ed5605 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -134,6 +134,8 @@ jobs: run: make -C examples/stm32/nucleo-f746zg-baremetal test VCON_API_KEY=${{secrets.VCON_API_KEY}} - if: ${{ env.GO == 1 }} run: make -C examples/stm32/nucleo-f746zg-freertos test VCON_API_KEY=${{secrets.VCON_API_KEY}} + - if: ${{ env.GO == 1 }} + run: make -C examples/stm32/nucleo-f746zg-freertos-tcp test VCON_API_KEY=${{secrets.VCON_API_KEY}} test_f4: runs-on: ubuntu-latest