aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 3586efd9d..2ead2c26a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -285,8 +285,12 @@ jobs:
sudo systemctl enable ndpid@lo
sudo systemctl start ndpid@lo
SYSTEMCTL_RET=3; while (( $SYSTEMCTL_RET == 3 )); do systemctl is-active ndpid@lo.service; SYSTEMCTL_RET=$?; sleep 1; done
- sudo systemctl status ndpisrvd.service ndpid@lo.service || true
- sudo systemctl show ndpisrvd.service ndpid@lo.service -p SubState,ActiveState || true
+ sudo systemctl status ndpisrvd.service ndpid@lo.service
+ sudo systemctl show ndpisrvd.service ndpid@lo.service -p SubState,ActiveState
+ sudo dpkg -i ./build/nDPId-*.deb
+ sudo systemctl status ndpisrvd.service ndpid@lo.service
+ sudo systemctl show ndpisrvd.service ndpid@lo.service -p SubState,ActiveState
+ sudo systemctl stop ndpisrvd.service
journalctl --no-tail --no-pager -u ndpisrvd.service -u ndpid@lo.service
- name: Build PF_RING and nDPId (invoke CC directly - dynamic nDPI lib)
if: endsWith(matrix.compiler, 'gcc-7') == false && startsWith(matrix.ndpi_build, '-DBUILD_NDPI=ON') && startsWith(matrix.coverage, '-DENABLE_COVERAGE=OFF') && startsWith(matrix.sanitizer, '-DENABLE_SANITIZER=ON') && startsWith(matrix.ndpid_gcrypt, '-DNDPI_WITH_GCRYPT=OFF') && startsWith(matrix.ndpid_zlib, '-DENABLE_ZLIB=ON')