diff --git a/.travis.yml b/.travis.yml index e263ac0..b6834a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,15 @@ language: c sudo: false dist: trusty +cache: + ccache: true +compiler: +- gcc +- clang install: 'true' script: - make -- make install -- mcrcon -h -- mcrcon -v -- make uninstall +- ./mcrcon -h +- ./mcrcon -v +- make install PREFIX="${HOME}" +- make uninstall PREFIX="${HOME}"