From: Mikko Johannes Koivunalho Date: Sun, 23 Jun 2019 05:10:09 +0000 (+0200) Subject: Add 'cmake --version' to Travis script X-Git-Tag: 0.13.0~6^2~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6064051d914dd8573a5550b587c73d180ab169ca;p=check Add 'cmake --version' to Travis script Signed-off-by: Mikko Johannes Koivunalho --- diff --git a/travis.sh b/travis.sh index 88fd01b..021f5e0 100644 --- a/travis.sh +++ b/travis.sh @@ -30,6 +30,7 @@ if [ -d doc/doxygen ]; then fi if [ "${USE_CMAKE}" = 'YES' ] ; then + cmake --version cmake . || exit 1 make || exit 1 ctest -V || exit 1 @@ -82,6 +83,7 @@ if [ "${PRE_RELEASE_CHECK}" = 'YES' ]; then make prereleasecheck || exit 1 tar xf check-*.tar.gz cd check-* + cmake --version cmake . || exit 1 make || exit 1 fi