From 4dde3cff703e6734b7b37737373de97e07643060 Mon Sep 17 00:00:00 2001 From: Ryan Northey Date: Tue, 29 Jun 2021 14:08:38 +0100 Subject: [PATCH] ci: Dont clone filter example where not required Signed-off-by: Ryan Northey --- ci/do_ci.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/do_ci.sh b/ci/do_ci.sh index 2a7bbe54d788..9dbab2e1adfd 100755 --- a/ci/do_ci.sh +++ b/ci/do_ci.sh @@ -6,8 +6,9 @@ set -e build_setup_args="" -if [[ "$1" == "format_pre" || "$1" == "fix_format" || "$1" == "check_format" || \ - "$1" == "bazel.clang_tidy" || "$1" == "tooling" || "$1" == "deps" ]]; then +if [[ "$1" == "format_pre" || "$1" == "fix_format" || "$1" == "check_format" || "$1" == "docs" || \ + "$1" == "bazel.clang_tidy" || "$1" == "tooling" || "$1" == "deps" || "$1" == "verify_examples" || \ + "$1" == "verify_build_examples" ]]; then build_setup_args="-nofetch" fi