aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2024-10-19 17:23:23 +0200
committerToni Uhlig <matzeton@googlemail.com>2024-10-21 16:10:09 +0200
commit8c5ee1f7bb7f2dff8959a021283dd200c64a3d2c (patch)
tree89d82d51c0eb9ca56c1ccde2ada069fd332a2c74 /.github
parent9969f955dc0062582256570960277ad86f40523b (diff)
Added config testing script.
* nDPId-test may now make use of an optional config file as cmd arg Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 61b2daba6..fe6ff8f6c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -250,6 +250,7 @@ jobs:
if: startsWith(matrix.os, 'macOS') == false && startsWith(matrix.ndpid_gcrypt, '-DNDPI_WITH_GCRYPT=OFF')
run: |
./test/run_tests.sh ./libnDPI ./build/nDPId-test
+ ./test/run_config_tests.sh ./libnDPI ./build/nDPId-test
- name: Daemon
if: startsWith(matrix.compiler, 'gcc') || endsWith(matrix.compiler, 'clang')
run: |
@@ -266,7 +267,10 @@ jobs:
- name: CPack DEB
if: startsWith(matrix.os, 'macOS') == false
run: |
- cd ./build && cpack -G DEB && sudo dpkg -i nDPId-*.deb && cd ..
+ cd ./build && cpack -G DEB && \
+ sudo dpkg -i nDPId-*.deb && \
+ sudo apt purge ndpid && \
+ sudo dpkg -i nDPId-*.deb && cd ..
- name: Upload DEB
if: startsWith(matrix.os, 'macOS') == false && matrix.upload
uses: actions/upload-artifact@v4