forked from StanfordSNR/pantheon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
36 lines (30 loc) · 910 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
language: python
sudo: required
services: docker
branches:
only:
- refactor
addons:
apt:
sources:
- sourceline: 'ppa:ubuntu-toolchain-r/test'
packages:
- g++-4.9
install:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 99
- pip install matplotlib numpy tabulate pyyaml colorama
env:
matrix:
- CMD='test/setup.py --schemes quic --install-deps &&
test/setup.py --schemes quic --setup &&
test/test.py local --schemes quic -t 10'
- CMD='SCHEMES="default_tcp vegas ledbat pcc verus sprout webrtc
scream copa taova koho_cc calibrated_koho saturator" &&
test/setup.py --schemes "$SCHEMES" --install-deps &&
test/setup.py --schemes "$SCHEMES" --setup &&
test/tests/local_test.py &&
analysis/tests/test_analyze.py'
script:
- ./install_deps.sh && eval $CMD
notifications:
email: false