From: Lukas Sismis Date: Thu, 18 Apr 2024 07:24:50 +0000 (+0200) Subject: dpdk: increase timeout for DPDK test runs X-Git-Tag: suricata-8.0.0-beta1~1442 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10921%2Fhead;p=thirdparty%2Fsuricata.git dpdk: increase timeout for DPDK test runs --- diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index ffa65b5f3e..6d7a94b89e 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -2106,14 +2106,14 @@ jobs: # IDS config - run: rm -f ./eve.json - run: | - timeout --kill-after=30 --preserve-status 3 \ + timeout --kill-after=30 --preserve-status 10 \ ./src/suricata -c .github/workflows/dpdk/suricata-null-ids.yaml -S /dev/null -l ./ --dpdk -vvvv - run: | test $(jq -c 'select(.event_type == "stats")' ./eve.json | tail -n1 | jq '.stats.capture.packets > 0') = true # IPS config - run: rm -f ./eve.json - run: | - timeout --kill-after=30 --preserve-status 3 \ + timeout --kill-after=30 --preserve-status 10 \ ./src/suricata -c .github/workflows/dpdk/suricata-null-ips.yaml -S /dev/null -l ./ --dpdk -vvvv - run: | test $(jq -c 'select(.event_type == "stats")' ./eve.json | tail -n1 | jq '.stats.capture.packets > 0') = true