aboutsummaryrefslogtreecommitdiff
path: root/util/travis/lint.sh
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2017-05-26 17:03:46 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-06-04 09:57:08 +0200
commitbf6569b57019d070246d947ed929cb2b5eb67faf (patch)
tree3a8a3d4858f20a57930e0a0d0ad1f7c3fb48b512 /util/travis/lint.sh
parent0e58168fe5bce607f64805b854420e7558372f24 (diff)
downloadminetest-bf6569b57019d070246d947ed929cb2b5eb67faf.tar.gz
minetest-bf6569b57019d070246d947ed929cb2b5eb67faf.tar.bz2
minetest-bf6569b57019d070246d947ed929cb2b5eb67faf.zip
Minetest for C++11 (CMakeLists + Travis)
* Move GCC to GCC 6 & GCC 7 * Move Clang to Clang 3.6 & Clang 4.0 * LINT moves from Clang 3.9 to Clang 4.0 * Move XCode 7.3 to 8.0 * Use more travis tricks to install compilers instead of adding complexity to our build script * Clang format fixes on checked files (compat Cpp11 instead of Cpp03) * Mingw GCC update from 4.8.4 to 5.3 (Ubuntu Xenial) * Drop mingw cmake generated files and add them to gitignore
Diffstat (limited to 'util/travis/lint.sh')
-rw-r--r--util/travis/lint.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/travis/lint.sh b/util/travis/lint.sh
index cd5f41779..555cf3ebe 100644
--- a/util/travis/lint.sh
+++ b/util/travis/lint.sh
@@ -1,8 +1,8 @@
#! /bin/bash
function perform_lint() {
echo "Performing LINT..."
- if hash clang-format-3.9 2>/dev/null; then
- CLANG_FORMAT=clang-format-3.9
+ if hash clang-format-4.0 2>/dev/null; then
+ CLANG_FORMAT=clang-format-4.0
else
CLANG_FORMAT=clang-format
fi