We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9748aa4 commit cfe63c3Copy full SHA for cfe63c3
.github/workflows/build-and-test-clientonly.yml
@@ -50,6 +50,17 @@ jobs:
50
make clean
51
make -j CLIENT_ONLY_TCP=1 SHE=1 ASAN=1 WOLFSSL_DIR=../wolfssl && make run
52
53
+ # Restart server with fresh state for second test run
54
+ - name: Restart POSIX server
55
+ run: |
56
+ kill $TCP_SERVER_PID || true
57
+ cd examples/posix/wh_posix_server
58
+ rm -f *.bin || true
59
+ ./Build/wh_posix_server.elf &
60
+ TCP_SERVER_PID=$!
61
+ echo "TCP_SERVER_PID=$TCP_SERVER_PID" >> $GITHUB_ENV
62
+ sleep 2
63
+
64
# Build and test client-only with DEBUG_VERBOSE=1 (includes DEBUG)
65
- name: Build client-only unit tests with DEBUG_VERBOSE
66
run: |
0 commit comments