Skip to content

Commit 49ae956

Browse files
committed
Update clang CI to show results
1 parent 0931acf commit 49ae956

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci-tests-clang.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
run: |
4242
ulimit -c unlimited -S
4343
cd build
44-
make test && QUICRESULT=$?
45-
if [[ ${QUICRESULT} == 0 ]]; then exit 0; fi;
44+
./picoquic_ct -S .. -n -r && QUICRESULT=$?
45+
./picohttp_ct -S .. -n -r -x http_corrupt && HTTPRESULT=$?
46+
if [[ ${QUICRESULT} == 0 ]] && [[ ${HTTPRESULT} == 0 ]]; then exit 0; fi;
4647
exit 1

0 commit comments

Comments
 (0)