diff options
author | James Rowe <jroweboy@gmail.com> | 2018-01-20 01:09:19 -0700 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2018-01-20 16:45:11 -0700 |
commit | 425b3923d23d1ba09293416d8cbe667952701ac1 (patch) | |
tree | 197200823396ef307993838b3951b7575534a1cc | |
parent | 096be1663682f38d572e9816e3350e0dc9f13168 (diff) |
Travis: Update clang-format to 6.0
-rw-r--r-- | .travis.yml | 5 | ||||
-rwxr-xr-x | .travis/clang-format/script.sh | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index f94a5c75e..2816a3f57 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,11 @@ matrix: dist: trusty addons: apt: + sources: + - sourceline: 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-6.0 main' + key_url: 'https://apt.llvm.org/llvm-snapshot.gpg.key' packages: - - clang-format-3.9 + - clang-format-6.0 script: "./.travis/clang-format/script.sh" - os: linux env: NAME="linux build" diff --git a/.travis/clang-format/script.sh b/.travis/clang-format/script.sh index 80a0f47e5..0f6e8e6e4 100755 --- a/.travis/clang-format/script.sh +++ b/.travis/clang-format/script.sh @@ -7,7 +7,7 @@ if grep -nr '\s$' src *.yml *.txt *.md Doxyfile .gitignore .gitmodules .travis* fi # Default clang-format points to default 3.5 version one -CLANG_FORMAT=clang-format-3.9 +CLANG_FORMAT=clang-format-6.0 $CLANG_FORMAT --version if [ "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then |