mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 08:03:45 +01:00
Run code style linter first (#7213)
The code style linter is the most likely to fail, so should be placed at the top of the list so it's started first. Note that a failed job doesn't stop others from running
This commit is contained in:
parent
03edcafdda
commit
738c8b102b
41
.travis.yml
41
.travis.yml
@ -9,6 +9,26 @@ notifications:
|
|||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
include:
|
include:
|
||||||
|
|
||||||
|
- env: LINT=1
|
||||||
|
compiler: clang
|
||||||
|
os: linux
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages: ['clang-format-5.0']
|
||||||
|
sources: &sources
|
||||||
|
- llvm-toolchain-trusty-5.0
|
||||||
|
|
||||||
|
- env: CLANG_TIDY=1
|
||||||
|
compiler: clang
|
||||||
|
os: linux
|
||||||
|
script: ./util/travis/clangtidy.sh
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages: ['clang-tidy-5.0']
|
||||||
|
sources: &sources
|
||||||
|
- llvm-toolchain-trusty-5.0
|
||||||
|
|
||||||
- env: PLATFORM=Win32
|
- env: PLATFORM=Win32
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
os: linux
|
os: linux
|
||||||
@ -87,24 +107,3 @@ matrix:
|
|||||||
packages: ['valgrind', 'clang-5.0', 'clang++-5.0']
|
packages: ['valgrind', 'clang-5.0', 'clang++-5.0']
|
||||||
sources: &sources
|
sources: &sources
|
||||||
- llvm-toolchain-trusty-5.0
|
- llvm-toolchain-trusty-5.0
|
||||||
|
|
||||||
- env: LINT=1
|
|
||||||
compiler: clang
|
|
||||||
os: linux
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages: ['clang-format-5.0']
|
|
||||||
sources: &sources
|
|
||||||
- llvm-toolchain-trusty-5.0
|
|
||||||
- env: CLANG_TIDY=1
|
|
||||||
compiler: clang
|
|
||||||
os: linux
|
|
||||||
script: ./util/travis/clangtidy.sh
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages: ['clang-tidy-5.0']
|
|
||||||
sources: &sources
|
|
||||||
- llvm-toolchain-trusty-5.0
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user