diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-01-13 23:14:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 23:14:28 +0100 |
commit | 7f69de0b514082553f3cfaf73afb7d55c626b461 (patch) | |
tree | 8916e23548e514e003d866b7049187f48c4a7069 /.github | |
parent | 533b3ab0e3041766e2f085e84c63bbd4d31c4b0b (diff) |
Restore a unit test result (#1403)
Deleted, probably by mistake, in 406ac7e8
Fix Makefile and add compilation of `rrdtool` in CI tests
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f2591cfb7..3a8214849 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -116,6 +116,7 @@ jobs: sudo apt-get install autoconf automake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev sudo apt-get install gcc-mingw-w64 libc6-dev sudo apt-get install doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe python3-pip + sudo apt-get install rrdtool librrd-dev - name: Install Ubuntu Prerequisites (libgcrypt) if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.arch, 'x86_64') && !startsWith(matrix.gcrypt, '--disable-gcrypt') run: | @@ -141,6 +142,7 @@ jobs: run: | brew install autoconf automake libtool pkg-config gettext json-c brew install coreutils + brew install rrdtool - name: Install MacOS Prerequisites (libgcrypt) if: startsWith(matrix.os, 'macOS') && startsWith(matrix.arch, 'x86_64') && !startsWith(matrix.gcrypt, '--disable-gcrypt') run: | @@ -174,6 +176,7 @@ jobs: run: | make all make -C example ndpiSimpleIntegration + make -C rrdtool make -C python - name: Install nDPI if: startsWith(matrix.arch, 'x86_64') @@ -226,10 +229,11 @@ jobs: args: > bash -c "apt-get -y update && - apt-get -y install git autoconf automake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev libgcrypt20-dev libpcre3-dev libmaxminddb-dev && + apt-get -y install git autoconf automake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev libgcrypt20-dev libpcre3-dev libmaxminddb-dev rrdtool librrd-dev && env CC=gcc CFLAGS='-Werror' ./autogen.sh --enable-debug-messages ${{ matrix.gcrypt }} ${{ matrix.msan }} ${{ matrix.pcre }} ${{ matrix.maxminddb }} && make all && make -C example ndpiSimpleIntegration && + make -C rrdtool && make -C python && ./tests/do.sh && ./tests/do-unit.sh @@ -250,10 +254,11 @@ jobs: args: > bash -c "apt-get -y update && - apt-get -y install git autoconf automake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev libgcrypt20-dev libpcre3-dev libmaxminddb-dev && + apt-get -y install git autoconf automake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev libgcrypt20-dev libpcre3-dev libmaxminddb-dev rrdtool librrd-dev && env CC=gcc CFLAGS='-Werror' ./autogen.sh --enable-debug-messages ${{ matrix.gcrypt }} ${{ matrix.msan }} ${{ matrix.pcre }} ${{ matrix.maxminddb }} && make all && make -C example ndpiSimpleIntegration && + make -C rrdtool && make -C python && ./tests/do.sh && ./tests/do-unit.sh @@ -274,10 +279,11 @@ jobs: args: > bash -c "apt-get -y update && - apt-get -y install git autoconf automake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev libgcrypt20-dev libpcre3-dev libmaxminddb-dev && + apt-get -y install git autoconf automake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev libgcrypt20-dev libpcre3-dev libmaxminddb-dev rrdtool librrd-dev && env CC=gcc CFLAGS='-Werror' ./autogen.sh --enable-debug-messages ${{ matrix.gcrypt }} ${{ matrix.msan }} ${{ matrix.pcre }} ${{ matrix.maxminddb }} && make all && make -C example ndpiSimpleIntegration && + make -C rrdtool && make -C python && ./tests/do-unit.sh " |