diff options
author | 2015-07-11 16:27:26 +0200 | |
---|---|---|
committer | 2015-07-11 16:27:47 +0200 | |
commit | bdc59d3d7da5baa60cf2f95444b46b1555f1a6cc (patch) | |
tree | 9eb9a840b6dbf37c0ede566fe2f02bd412aef99c /.travis.yml | |
parent | 3a8d682827eb53c6747084fe3907c82ffd4f212b (diff) |
travis: run validate after compiling
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index b125b79d0d8..095969336d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,12 +3,12 @@ compiler: - gcc - clang env: - - SUBTARGET=arcade - - SUBTARGET=mess + - SUBTARGET=arcade MAME=mamearcade64 + - SUBTARGET=mess MAME=mess64 script: - if [ $CC == 'clang' ]; - then make -j2 linux_x64_clang; - else make -j2; + then make -j2 linux_x64_clang && ./$MAME -validate; + else make -j2 && ./$MAME -validate; fi sudo: required before_install: |