summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-09-17 17:45:08 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-09-17 18:59:49 +0200
commit4fa1694b0514042404ef7efa801addc2f624cf37 (patch)
treee115edac6cfa85a47b5554eb1f018f345a18d2ad /.github/workflows/build.yml
parentc5be804725623977193aad459caf906f325c83bd (diff)
Github Actions integration
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml42
1 files changed, 42 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 000000000..4e235b261
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,42 @@
+name: Build
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - master
+ types: [opened, synchronize, reopened]
+ release:
+ types: [created]
+jobs:
+ test:
+ name: ${{ matrix.os }} ${{ matrix.gcrypt }}
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os: ["ubuntu-latest", "ubuntu-18.04"]
+ ndpid_gcrypt: ["-DNDPI_WITH_GCRYPT=OFF", ""]
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
+ - name: Install Ubuntu Prerequisites
+ if: startsWith(matrix.os, 'ubuntu')
+ run: |
+ sudo apt-get update
+ sudo apt-get install autoconf automake cmake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev
+ sudo apt-get install gcc-arm-linux-gnueabihf gcc-mingw-w64 libc6-dev
+ - name: Install Ubuntu Prerequisites (libgcrypt)
+ if: startsWith(matrix.os, 'ubuntu') && !startsWith(matrix.ndpid_gcrypt, '-DNDPI_WITH_GCRYPT=OFF')
+ run: |
+ sudo apt-get install libgcrypt20-dev
+ - name: Configure nDPI
+ run: |
+ mkdir build && cd build
+ env CMAKE_C_FLAGS='-Werror' cmake .. -DBUILD_EXAMPLES=ON -DBUILD_NDPI=ON -DENABLE_SANITIZER=ON ${{ matrix.ndpid_gcrypt }}
+ - name: Build nDPI
+ run: |
+ make -C build all