summaryrefslogtreecommitdiffstats
path: root/jjb
diff options
context:
space:
mode:
authorVanessa Valderrama <vvalderrama@linuxfoundation.org>2024-07-25 18:28:44 +0000
committerGerrit Code Review <gerrit@fd.io>2024-07-25 18:28:44 +0000
commitc7c3628f203a7db78727a5503d86d9ae0696a940 (patch)
tree6fa98d1fadd909140456c6b17e4fed4063236b1c /jjb
parentee366e5f40dcb8b59c17d8fe8db99de5d8c5f0cf (diff)
parentbe89a04a35e24f3e46936dd208534df118c36321 (diff)
Merge "fix(vpp): install vpp dependencies in checkstyle job"
Diffstat (limited to 'jjb')
-rwxr-xr-xjjb/scripts/vpp/checkstyle.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/jjb/scripts/vpp/checkstyle.sh b/jjb/scripts/vpp/checkstyle.sh
index 00fc8bdb8..7feae3980 100755
--- a/jjb/scripts/vpp/checkstyle.sh
+++ b/jjb/scripts/vpp/checkstyle.sh
@@ -34,9 +34,9 @@ if git show --stat | grep -q "$MATRIX_FILE" ; then
fi
fi
-if [ -n "$(grep -E '^checkstyle:' Makefile)" ]
+if grep -qE '^checkstyle:' Makefile
then
- make checkstyle
+ make UNATTENDED=yes install-deps checkstyle
else
- echo "Can't find checkstyle target in Makefile - skipping checkstyle"
+ echo "Can't find checkstyle target in Makefile - skipping checkstyle"
fi