File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 6262 kill $TCP_SERVER_PID || true
6363 cd examples/posix/wh_posix_server
6464 rm -f *.bin || true
65- ./Build/wh_posix_server.elf &
65+ ./Build/wh_posix_server.elf --type ${{ matrix.transport }} &
6666 TCP_SERVER_PID=$!
6767 echo "TCP_SERVER_PID=$TCP_SERVER_PID" >> $GITHUB_ENV
6868 sleep 2
7272 run : |
7373 cd test
7474 make clean
75- make -j CLIENT_ONLY_TCP=1 SHE=1 DEBUG_VERBOSE=1 WOLFSSL_DIR=../wolfssl && make run
75+ if [ "${{ matrix.transport }}" = "tcp" ]; then
76+ make -j CLIENT_ONLY_TCP=1 SHE=1 DEBUG_VERBOSE=1 WOLFSSL_DIR=../wolfssl && make run
77+ else
78+ make -j CLIENT_ONLY_TLS=1 SHE=1 DEBUG_VERBOSE=1 WOLFSSL_DIR=../wolfssl && make run
79+ fi
7680
7781 # Optional: Kill the server process if it doesn't exit on its own
7882 - name : Cleanup POSIX server
You can’t perform that action at this time.
0 commit comments