From f6375ac3ebac28656a0a757952d32c265b1ba7aa Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 27 Feb 2020 15:41:11 +1100 Subject: [PATCH] travis: Add CI job to check code formatting. The CI job will fail if there is any code which does not conform to the style encoded by tools/codeformat.py. And it will list any changes required. uncrustify is built from source because Ubuntu bionic has uncrustify-0.66.1 which is from 2017/11/22 and is missing many options needed here. --- .travis.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f2b05f9d79..e7fd13fd55 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,9 +18,28 @@ stages: - name: test # define the jobs for the stages -# order of the jobs has longest running first to optimise total time +# approx order of the jobs has longest running first to optimise total time jobs: include: + # check code formatting + - stage: test + os: linux + arch: arm64 + dist: bionic + env: NAME="code formatting" + install: + - sudo apt-get install python3-pip + - sudo pip3 install black + - black --version + script: + - git clone https://github.com/uncrustify/uncrustify.git $HOME/uncrustify + - git -C $HOME/uncrustify checkout uncrustify-0.70.1 + - mkdir -p $HOME/uncrustify/build + - (cd $HOME/uncrustify/build && cmake ..) + - make -C $HOME/uncrustify/build + - PATH=$HOME/uncrustify/build:$PATH tools/codeformat.py + - git diff --exit-code + # stm32 port - stage: test env: NAME="stm32 port build"