We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66dc0c9 commit 6cbd22bCopy full SHA for 6cbd22b
2 files changed
.travis-ci.sh
@@ -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
22
23
24
+ ;;
25
+esac
26
.travis.yml
@@ -0,0 +1,7 @@
+language: c
+script: bash -ex .travis-ci.sh
+env:
+ matrix:
+ - DOWNSTREAM=none
+ - DOWNSTREAM=verdi
+sudo: false
0 commit comments