blob: ee29ce345ce1284234eff66dd9f2a48aee97c505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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 results && git checkout ./analysis/output/rankplots/*.pdf && git diff --exit-code"
|