blob: eb05410e0e9428c256516264dbd353e003f7c486 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
language: python
python:
- "3.6"
services:
- docker
before_install:
- sudo apt-get update
# install make
- sudo apt-get install build-essential
# install virtualenv
- pip install -U virtualenv
# build docker image
- docker build -t tcpd https://github.com/alan-turing-institute/TCPD.git
install:
# disable the default travis install action
- true
script:
- docker run -i -t -v /tmp/docker_tcpd:/TCPD/export tcpd && ls /tmp/docker_tcpd
- make clean
- make test
|