diff options
author | Vladimir Glavnyy <31897320+vglavnyy@users.noreply.github.com> | 2019-02-20 02:22:25 +0700 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2019-02-19 20:22:25 +0100 |
commit | 0eaaf18192cd1d5fc6371d429cb7107b1c461dd1 (patch) | |
tree | 1b33360d5410dabab25e276ef564778ca6b474e9 /.travis.yml | |
parent | 957d1671990ea08c661dc35e8ad7cf42893c5544 (diff) | |
download | flatbuffers-0eaaf18192cd1d5fc6371d429cb7107b1c461dd1.tar.gz flatbuffers-0eaaf18192cd1d5fc6371d429cb7107b1c461dd1.tar.bz2 flatbuffers-0eaaf18192cd1d5fc6371d429cb7107b1c461dd1.zip |
Utility for checking the encoding and line ending of source files (#5188)
* Add utility for checking the encoding of source files
- accept source files with ASCII or UTF-8 without BOM
- accept only CRLF line ending
* Fix non-ascii symbol in idl_parcer.cpp
* Remove BOM from test.cpp
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index b6ab9952..23c4c23b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -89,6 +89,7 @@ matrix: - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo ln -s -v -f $(which gcc-$GCC_VERSION) /usr/bin/gcc; fi script: + - bash .travis/check-sources.sh - bash grpc/build_grpc.sh - cmake . -DCMAKE_BUILD_TYPE=$BUILD_TYPE |