We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e45db3 commit 0931acfCopy full SHA for 0931acf
.github/workflows/ci-tests.yml
@@ -33,8 +33,9 @@ jobs:
33
run: |
34
ulimit -c unlimited -S
35
cd build
36
- make test && QUICRESULT=$?
37
- if [[ ${QUICRESULT} == 0 ]]; then exit 0; fi;
+ ./picoquic_ct -S .. -n -r && QUICRESULT=$?
+ ./picohttp_ct -S .. -n -r -x http_corrupt && HTTPRESULT=$?
38
+ if [[ ${QUICRESULT} == 0 ]] && [[ ${HTTPRESULT} == 0 ]]; then exit 0; fi;
39
cat /home/runner/work/picoquic/picoquic/build/Testing/Temporary/LastTest.log
40
exit 1
41
0 commit comments