diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-07-14 04:09:15 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-07-14 04:09:15 +0200 |
commit | ef94b83a62b4d1c7cefd8982f0bcadfc0b1f097c (patch) | |
tree | 1e310ff0cb9d17a6a118e5d7a6d91445160b1b03 /.github/workflows/build.yml | |
parent | fc442180da85fa7dd9804a05b8d7d979c383a086 (diff) |
Replaced outdated nDPI version info with the correct one.
* add CI job to verify the lowest known-to-work-libnDPI-version
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 30ac755dc..91a00c658 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,12 +13,16 @@ jobs: test: name: ${{ matrix.os }} ${{ matrix.gcrypt }} runs-on: ${{ matrix.os }} + env: + CMAKE_C_COMPILER: ${{ matrix.compiler }} + CMAKE_C_FLAGS: -Werror strategy: fail-fast: true matrix: os: ["ubuntu-latest", "ubuntu-18.04"] ndpid_gcrypt: ["-DNDPI_WITH_GCRYPT=OFF", "-DNDPI_WITH_GCRYPT=ON"] ndpid_zlib: ["-DENABLE_ZLIB=OFF", "-DENABLE_ZLIB=ON"] + ndpi_min_version: ["4.4"] include: - compiler: "default-cc" os: "ubuntu-latest" @@ -50,7 +54,7 @@ jobs: - name: Configure nDPId run: | mkdir build && cd build - env CMAKE_C_COMPILER=${{ matrix.compiler }} CMAKE_C_FLAGS='-Werror' cmake .. -DENABLE_COVERAGE=ON -DBUILD_EXAMPLES=ON -DBUILD_NDPI=ON -DENABLE_SANITIZER=ON ${{ matrix.ndpid_zlib }} ${{ matrix.ndpid_gcrypt }} + cmake .. -DENABLE_COVERAGE=ON -DBUILD_EXAMPLES=ON -DBUILD_NDPI=ON -DENABLE_SANITIZER=ON ${{ matrix.ndpid_zlib }} ${{ matrix.ndpid_gcrypt }} - name: Build nDPId run: | make -C build all VERBOSE=1 @@ -75,11 +79,10 @@ jobs: - name: CPack DEB run: | cd ./build && cpack -G DEB && cd .. -# enable this block after the next libnDPI release -# - name: Build against libnDPI-4.3 -# run: | -# mkdir build-local-ndpi && cd build-local-ndpi -# wget 'https://github.com/ntop/nDPI/archive/refs/tags/4.3.tar.gz' -# tar -xzvf 4.3.tar.gz && cd nDPI-4.3 && ./autogen.sh --prefix=/usr --with-only-libndpi CC=${{ matrix.compiler }} CXX=false CFLAGS='-Werror' && sudo make install && cd .. -# env CMAKE_C_COMPILER=${{ matrix.compiler }} CMAKE_C_FLAGS='-Werror' cmake .. -DENABLE_COVERAGE=ON -DBUILD_EXAMPLES=ON -DBUILD_NDPI=OFF -DENABLE_SANITIZER=ON ${{ matrix.ndpid_zlib }} -# make all VERBOSE=1 + - name: Build against libnDPI-${{ matrix.ndpi_min_version }} + run: | + mkdir build-local-ndpi && cd build-local-ndpi + wget 'https://github.com/ntop/nDPI/archive/refs/tags/${{ matrix.ndpi_min_version }}.tar.gz' + tar -xzvf ${{ matrix.ndpi_min_version }}.tar.gz && cd nDPI-${{ matrix.ndpi_min_version }} && ./autogen.sh --prefix=/usr --with-only-libndpi CC=${{ matrix.compiler }} CXX=false CFLAGS='-Werror' && sudo make install && cd .. + cmake .. -DENABLE_COVERAGE=ON -DBUILD_EXAMPLES=ON -DBUILD_NDPI=OFF -DENABLE_SANITIZER=ON ${{ matrix.ndpi_min_version }} + make all VERBOSE=1 |