From 8abdbd92e519091a34889186991c9ee863289df6 Mon Sep 17 00:00:00 2001 From: Hajime Tazaki Date: Thu, 23 Feb 2017 23:16:52 +0900 Subject: [PATCH] lkl: fix patch style test timing on circleci so that a test can continue after checkpatch error/warning. Fixes: 8bee548a9a92 ("lkl: fix checkpatch test timing on circleci") Signed-off-by: Hajime Tazaki --- circle.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 41ade32ca90f94..676079cf851df1 100644 --- a/circle.yml +++ b/circle.yml @@ -19,7 +19,7 @@ dependencies: - /usr/local/android-ndk/build/tools/make-standalone-toolchain.sh --platform=android-21 --install-dir=/home/ubuntu/android-toolchain --arch=arm - sudo cp tools/lkl/bin/i686-w64-mingw32-* /usr/bin: parallel: true - - tools/lkl/scripts/checkpatch.sh + - git fetch --tags git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git override: - mkdir -p ~/.ccache - cd tools/lkl && make clean: @@ -33,6 +33,8 @@ dependencies: test: + pre: + - tools/lkl/scripts/checkpatch.sh override: - cd tools/lkl && if [ $CIRCLE_NODE_INDEX -eq 2 ] ; then make tests/boot-in.o; arm-linux-androideabi-gcc -o tests/boot tests/boot-in.o liblkl.a -static ; fi: parallel: true