From a4af720280733694ec9ef3c77e82cc40b7fe5803 Mon Sep 17 00:00:00 2001 From: Russ Magee Date: Sat, 9 Apr 2022 20:05:42 -0700 Subject: [PATCH] Put lint before build in CI script --- bacillus/ci_pushbuild.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bacillus/ci_pushbuild.sh b/bacillus/ci_pushbuild.sh index b42fe5f..6ae1a9a 100755 --- a/bacillus/ci_pushbuild.sh +++ b/bacillus/ci_pushbuild.sh @@ -41,6 +41,11 @@ go clean -cache echo "Invoking 'make all' ..." make all +############ +stage "Lint" +############ +make lint + ############ stage "UnitTests" ############ @@ -99,11 +104,6 @@ if [ -f ~/.xs_id.bak ]; then mv ~/.xs_id.bak ~/.xs_id fi -############ -stage "Lint" -############ -make lint - ############ stage "Artifacts" ############