Skip to content

Commit 9748aa4

Browse files
committed
Client only CI action: Fixed cleanup order
1 parent adc604b commit 9748aa4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-and-test-clientonly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ jobs:
5050
make clean
5151
make -j CLIENT_ONLY_TCP=1 SHE=1 ASAN=1 WOLFSSL_DIR=../wolfssl && make run
5252
53-
# Optional: Kill the server process if it doesn't exit on its own
54-
- name: Cleanup POSIX TCP server
55-
if: always()
56-
run: kill $TCP_SERVER_PID || true
57-
5853
# Build and test client-only with DEBUG_VERBOSE=1 (includes DEBUG)
5954
- name: Build client-only unit tests with DEBUG_VERBOSE
6055
run: |
6156
cd test
6257
make clean
63-
make -j CLIENT_ONLY_TCP=1 DEBUG_VERBOSE=1 WOLFSSL_DIR=../wolfssl && make run
58+
make -j CLIENT_ONLY_TCP=1 SHE=1 DEBUG_VERBOSE=1 WOLFSSL_DIR=../wolfssl && make run
59+
60+
# Optional: Kill the server process if it doesn't exit on its own
61+
- name: Cleanup POSIX TCP server
62+
if: always()
63+
run: kill $TCP_SERVER_PID || true
6464

0 commit comments

Comments
 (0)