diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-13 03:05:35 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-13 08:18:20 +0300 |
commit | 5deab1637f6233c2b1a2b0d3db84448a5b74124e (patch) | |
tree | dd8c4c9ee903e69c97f3a61d0fe424c28d4f8950 /.travis.yml | |
parent | update cmake-common (diff) | |
download | math-server-5deab1637f6233c2b1a2b0d3db84448a5b74124e.tar.gz math-server-5deab1637f6233c2b1a2b0d3db84448a5b74124e.zip |
Travis: run clang-format
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index bf4d816..998d433 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,11 +6,14 @@ addons: apt: update: true packages: + - clang-format-9 - cmake - g++-multilib sources: - sourceline: 'deb https://apt.kitware.com/ubuntu/ bionic main' key_url: 'https://apt.kitware.com/keys/kitware-archive-latest.asc' + - sourceline: 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-9 main' + key_url: 'https://apt.llvm.org/llvm-snapshot.gpg.key' env: global: @@ -22,6 +25,8 @@ env: - configuration=Release platform=x64 before_script: + - ./cmake/tools/clang-format/clang-format.sh --clang-format clang-format-9 --diff + - >- ./cmake/boost/build/ci/travis.py --link static |