Skip to content

Commit 6cbd22b

Browse files
committed
Travis integration
1 parent 66dc0c9 commit 6cbd22b

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

.travis-ci.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
set -e
2+
3+
pushd ..
4+
wget 'http://homes.cs.washington.edu/~jrw12/coq-8.5-build-local.tgz'
5+
tar xf coq-8.5-build-local.tgz
6+
export PATH=$PWD/coq-8.5/bin:$PATH
7+
popd
8+
9+
./build.sh
10+
11+
case $DOWNSTREAM in
12+
verdi)
13+
pushd ..
14+
git clone 'http://github.com/uwplse/StructTact'
15+
pushd StructTact
16+
./build.sh
17+
popd
18+
19+
git clone 'http://github.com/uwplse/verdi'
20+
pushd verdi
21+
./build.sh
22+
popd
23+
popd
24+
;;
25+
esac
26+

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: c
2+
script: bash -ex .travis-ci.sh
3+
env:
4+
matrix:
5+
- DOWNSTREAM=none
6+
- DOWNSTREAM=verdi
7+
sudo: false

0 commit comments

Comments
 (0)