diff options
author | Guy Harris <guy@alum.mit.edu> | 2018-01-21 13:29:21 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2018-01-21 13:29:21 -0800 |
commit | 9575212322d2263d6b9bded14a2cfbcdb05cf110 (patch) | |
tree | 47474d5869422cf24c7f82417aca0618182d46bd | |
parent | 31677aedb9ef7dea9487c136055bf6ad0aa1900e (diff) |
The build step is the same with autotools and CMake.
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index cfac32e9..ba839cdf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -75,8 +75,7 @@ script: - if [ "$COVERITY_SCAN_BRANCH" != 1 -a "$CMAKE" = yes ]; then cd build; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 -a "$CMAKE" = yes ]; then cmake -DCMAKE_INSTALL_PREFIX=/tmp $ENABLE_REMOTE ..; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo -n travis_fold:end:script.configure; fi - - if [ "$COVERITY_SCAN_BRANCH" != 1 -a "$CMAKE" = no ]; then make -s all tests; fi - - if [ "$COVERITY_SCAN_BRANCH" != 1 -a "$CMAKE" = yes ]; then make -s all tests; fi + - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make -s all tests; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo '$ make install [...]' && echo -n travis_fold:start:script.make_install; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then PATH=$PATH make install; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo -n travis_fold:end:script.make_install; fi |