-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
56 lines (52 loc) · 1.8 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
sudo: required
notifications:
email:
on_success: never
on_failure: never
matrix:
include:
# - langage: python
# python: 2.7
# os: linux
# dist: trusty
- langage: python
python: 3.4
os: linux
dist: trusty
- langage: python
python: 3.5
os: linux
dist: trusty
- langage: python
python: 3.6
os: linux
dist: trusty
install: # command to install dependencies
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install python3-pip; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libgmp-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libmpfr-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libmpc-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libppl-dev; fi
- pip3 install --user 'Cython==0.26';
- pip3 install --user git+https://github.com/aleaxit/[email protected] --no-index --verbose;
- pip3 install --user cysignals;
- pip3 install --user git+https://github.com/jesusjda/pplpy --no-index --verbose
- pip3 install --user z3-solver
- pip3 install --user git+https://github.com/jesusjda/pyLPi --verbose --no-index;
- pip3 install --user pydotplus
- pip3 install --user pydot
- pip3 install --user networkx
- pip3 install --user arpeggio
- pip3 install --user pyleri
- mkdir -p /tmp/pyeiol
- pushd /tmp/pyeiol
- git clone https://github.com/abstools/easyinterface.git .
- git checkout develop
- cd ./outputlanguage/python
- pip3 install --user .
- popd
- pip3 install --user git+https://github.com/jesusjda/pyParser --verbose --no-index;
- pip3 install . --user --verbose --no-index;
script:
- echo "DONE!"