-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
53 lines (45 loc) · 1.14 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
language: java
env:
global:
- TMPDIR=/tmp
jdk:
- oraclejdk8
python:
- 2.7
install:
- export JPF_TRAVIS=$(pwd)/jpf-travis
- mkdir -p $JPF_TRAVIS
- wget --output-document=jpf-travis.tar.gz https://www.dropbox.com/s/vjqfokrldjv0mro/jpf-travis.tar.gz?dl=1;
- tar xvf jpf-travis.tar.gz --strip-components=1 -C $JPF_TRAVIS;
- ls $JPF_TRAVIS
- cd $JPF_TRAVIS
- export JPF_CORE=$(pwd)/jpf-core
- mkdir -p $JPF_CORE
- tar xvf jpf-core.tar.gz --strip-components=1 -C $JPF_CORE;
- mv .jpf $TRAVIS_BUILD_DIR
- cd ../
- pwd
- ls .jpf
- echo "Installing JAYHORN"
- git clone https://github.com/jayhorn/jayhorn
- ls
- cd jayhorn
- ls
- git checkout devel
- cd jayhorn
- ls
- ./gradlew jar
- ls build/libs/
- cd ../..
- java -jar jayhorn/jayhorn/build/libs/jayhorn.jar -h
before_install:
- echo "Running the experiments."
- pwd
- export LD_LIBRARY_PATH=$(pwd)/jayhorn/jayhorn/native_lib
script:
- echo " RUNNING CBMC "
- python runner.py ./benchmarks/cbmc-java
- echo " RUNNING MinePUMP "
- python runner.py ./benchmarks/MinePump/spec1-5
after_success:
- echo "All done."