1
0
forked from Mirror/wren

Get Travis set up.

This commit is contained in:
Bob Nystrom
2015-01-02 08:13:51 -08:00
parent 526a84c4d6
commit 6b510da872
2 changed files with 8 additions and 0 deletions

5
.travis.yml Normal file
View File

@ -0,0 +1,5 @@
language: c
compiler:
- gcc
- clang
script: make && make test

View File

@ -231,3 +231,6 @@ else:
for key in sorted(skipped.keys()):
print ('Skipped ' + color.YELLOW + str(skipped[key]) + color.DEFAULT +
' tests: ' + key)
if failed != 0:
sys.exit(1)