aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-09-16 16:48:55 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-09-16 16:48:55 +0200
commitc5be804725623977193aad459caf906f325c83bd (patch)
tree701a5058fc57a306f4c97cb0f90cea441203b3c4
parent655f38b68f83536054b240de2d3b7316bb407c6a (diff)
Removed Travis-CI support as they do not support OpenSource anymore.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r--.travis.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 5760673d5..000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-language: c
-before_install:
-- sudo apt-get -qq update
-- sudo apt-get install -y build-essential make binutils gcc autoconf automake libtool pkg-config git libpcap-dev libgcrypt-dev libgpg-error-dev libjson-c-dev netcat-openbsd python3 python3-jsonschema
-script:
-# static linked build
-- mkdir build-cmake-submodule && cd build-cmake-submodule &&
- cmake .. -DBUILD_EXAMPLES=ON -DBUILD_NDPI=ON -DENABLE_SANITIZER=ON -DENABLE_ZLIB=OFF && make && cd ..
-- ./test/run_tests.sh ./libnDPI ./build-cmake-submodule/nDPId-test
-- if ldd build/nDPId | grep -qoEi libndpi; then
- echo 'nDPId linked against a static libnDPI should not contain a shared linked libnDPI.' >&2; false; fi
-# pkg-config dynamic linked build
-- mkdir build && cd build &&
- PKG_CONFIG_PATH="$(realpath ../build-cmake-submodule/libnDPI/lib/pkgconfig)"
- cmake .. -DBUILD_EXAMPLES=ON -DENABLE_SANITIZER=ON -DENABLE_MEMORY_PROFILING=ON && make && cd ..
-- ./build/nDPId-test || test $? -eq 1
-- ./build/nDPId -h || test $? -eq 1
-# dameon start/stop test
-- make -C ./build daemon
-- make -C ./build daemon
-# make dist
-- ./scripts/make-dist.sh