Skip to content

Commit

Permalink
enable Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Kroening committed Sep 8, 2017
1 parent aa0f55e commit 90fd50b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
language: cpp

matrix:
include:

# Ubuntu Linux with glibc using g++
- os: linux
sudo: false
compiler: gcc
cache: ccache
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libwww-perl
- g++-6

install:
- (cd lib/cbmc/src ; make minisat2-download)
- (cd src; cp config.inc.template config.inc)
- export CXX="ccache g++-6"

script:
- (cd lib/cbmc/src ; make)
- (cd src ; make)
- (cd regression/ebmc; make test)
- (cd regression/verilog; make test)
- (cd regression/hw-cbmc; make test)

before_cache:
- ccache -s

0 comments on commit 90fd50b

Please sign in to comment.