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 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