File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,12 @@ jobs:
59
59
- name : Build with IDF-${{ matrix.idf_ver }}
60
60
shell : bash
61
61
run : |
62
- ./ci/config_env.sh
62
+ . ${GITHUB_WORKSPACE} /ci/config_env.sh
63
63
. ${IDF_PATH}/export.sh
64
64
python -m pip install idf-build-apps
65
- python ./ci/build_apps.py examples/mqtt -l -t linux -r default
65
+ env | grep -i broker
66
+ python ./ci/build_apps.py examples/mqtt -l -t linux -r 'sdkconfig.ci'
67
+ cat examples/mqtt/build_linux/config/sdkconfig.h | grep -i broker
66
68
timeout 5 ./examples/mqtt/build_linux/esp_mqtt_demo.elf | tee test.log || true
67
69
grep 'MQTT_EVENT_DATA' test.log
68
70
Original file line number Diff line number Diff line change 4
4
set -e
5
5
6
6
# MQTT public broker URI
7
- echo " CI_MQTT_BROKER_URI=\ " broker.emqx.io\" " >> " $GITHUB_ENV "
7
+ export CI_MQTT_BROKER_URI=" broker.emqx.io"
Original file line number Diff line number Diff line change
1
+ # CONFIG_ESP_EVENT_POST_FROM_ISR is not set
2
+ CONFIG_BROKER_URL="mqtt://${CI_MQTT_BROKER_URI}"
You can’t perform that action at this time.
0 commit comments