aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2021-01-26 20:19:29 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2021-01-26 20:19:29 +0000
commit416288ca1e4af459c61a6d53e0993cbddcc0b584 (patch)
tree3dd351adab7c4f84fdbacad52efd00501a1f199a
parentRename build workflow (diff)
downloadTCPDBench-416288ca1e4af459c61a6d53e0993cbddcc0b584.tar.gz
TCPDBench-416288ca1e4af459c61a6d53e0993cbddcc0b584.zip
remove travis config
-rw-r--r--.travis.yml21
1 files changed, 0 insertions, 21 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 5ec909d5..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-language: generic
-
-services:
- - docker
-
-before_install:
- - docker build -t alan-turing-institute/tcpdbench .
-
-script:
- - mkdir -p /home/travis/build/alan-turing-institute/analysis/output
- # create results (tables/figures) in the docker container note that we
- # consider the build successful if there is no difference between the
- # results in the repo and that generated by travis. An exception are the
- # pdf files, which often differ due to different latex versions etc.
- - docker run -v /home/travis/build/alan-turing-institute/analysis/output:/TCPDBench/analysis/output alan-turing-institute/tcpdbench /bin/bash -c "make clean && make results && git checkout ./analysis/output/rankplots/*.pdf && git diff --exit-code"
- # Test that the virtual environments can be created. The virtualenvs are
- # needed to run the experiments using the same package versions as used in
- # the paper. Since these may depend on external (third-party) packages,
- # they can potentially be fragile to unexpected changes, so we want to
- # make sure we're notified when they no longer build correctly.
- # - docker run alan-turing-institute/tcpdbench /bin/bash -c "make venvs"