-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (32 loc) · 1.08 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
language: python
python:
- 2.7
cache: apt
before_install:
- until sudo add-apt-repository -y ppa:saiarcot895/chromium-beta; do echo retry; done
- until sudo add-apt-repository --yes ppa:kalakris/cmake; do echo retry; done
- until sudo apt-get -qq update; do echo retry; done
- until sudo apt-get install cmake; do echo retry; done
install:
- travis_retry pip install pysmt;
- export LZ="$TRAVIS_BUILD_DIR/../zus"
- mkdir -p $LZ
- wget --output-document=zustre.tar.gz https://www.dropbox.com/s/cw29pcuglj867pp/zustre.tar.gz?dl=1;
- tar xvf zustre.tar.gz --strip-components=1 -C $LZ;
- ls $LZ
script:
- mkdir -p build
- cd build
- /usr/bin/cmake -DZ3_ROOT=$LZ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=run -DCMAKE_PROGRAM_PATH=/usr/bin ../;
- /usr/bin/cmake --build .
- /usr/bin/cmake --build . --target install
- cd ..
- ls build/run/bin
- ./build/run/bin/sygspacer -h
- ./build/run/bin/sygspacer ../test/counters.sl
notifications:
email:
recipients:
on_success: always
on_failure: always