diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-07-27 18:33:25 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-07-27 18:39:11 +0200 |
commit | d915530feb97ab251eb5eab1794dd2fd2577e811 (patch) | |
tree | a4e57f646e43c28ccc752c22f59b3b375775112d /.circleci | |
parent | 7bd8081cd25cb06d6535885ca9fbf44f64677af6 (diff) |
Circle CI integration
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..6033e1db4 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,19 @@ +version: 2.1 + +jobs: + build: + docker: + - image: ubuntu:latest + steps: + - checkout + - run: export DEBIAN_FRONTEND=noninteractive + - run: apt-get update -qq + - run: | + env DEBIAN_FRONTEND=noninteractive \ + apt-get install -y -qq \ + coreutils wget git unzip make cmake binutils gcc g++ autoconf automake flex bison texinfo \ + libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev zlib1g-dev + - run: | + cmake -S . -B build -DENABLE_SYSTEMD=ON -DBUILD_EXAMPLES=ON -DBUILD_NDPI=ON + - run: | + cmake --build build --verbose |