We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b42f2 commit f54f975Copy full SHA for f54f975
.github/workflows/mqtt-sn-check.yml
@@ -42,7 +42,7 @@ jobs:
42
run: more gateway.conf
43
- name: Run gateway
44
working-directory: ./gateway/MQTTSNGateway/bin
45
- run: sudo ./MQTT-SNGateway &> gateway.log &
+ run: sudo ./MQTT-SNGateway &> ~/gateway.log &
46
sleep 1 # let the broker set everything up
47
48
# This is some debug info useful if something goes wrong
@@ -74,9 +74,9 @@ jobs:
74
run: ./autogen.sh
75
76
- name: wolfmqtt configure with SN Enabled
77
- env:
78
- WOLFMQTT_NO_EXTERNAL_BROKER_TESTS: 1
79
- run: ./configure --enable-sn
+ run: |
+ export WOLFMQTT_NO_EXTERNAL_BROKER_TESTS=1
+ ./configure --enable-sn
80
- name: wolfmqtt make
81
run: make
82
- name: wolfmqtt make check
@@ -91,4 +91,4 @@ jobs:
91
if: failure() || cancelled()
92
run: |
93
cat test-suite.log
94
- cat gateway.log
+ cat ~/gateway.log
0 commit comments