forked from ibex-team/ibex-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
22 lines (21 loc) · 821 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: python
python:
- "2.7"
#
before_install:
- sudo apt-get update -q
- sudo apt-get install -y --force-yes python2.7 flex bison gcc g++ coinor-libclp-dev libcpptest-dev pkg-config
# command to install dependencies
install:
- cd 3rd && tar xvf soplex-1.7.1.tar && cd soplex-1.7.1 && make install && cd ../..
- ./waf configure --with-soplex=$PWD/3rd/soplex-1.7.1
- sudo ./waf install
- export PKG_CONFIG_PATH=/usr/local/share/pkgconfig/
# - cd tests/ && make utest && cd ..
- cd tests/ && make utest && make nonreg && cd ..
# command to run tests
script:
# - __build__/examples/optimizer04 benchs/benchs-optim/coconutbenchmark-library1/ex8_5_2.bch acidhc4 compo smearsumrel 1.e-8 1.e-8 100 1
- cd tests/ &&./utest
- cd ..
- cd tests/ && ./nonreg nonreg-travis-soplex-filib.res && cd ..