From 8724a70c4c4329f09b9cf6dbda4dbefaaf3a3ee9 Mon Sep 17 00:00:00 2001 From: Zach White Date: Mon, 30 Nov 2020 11:19:44 -0800 Subject: Reduce travis load by replacing an exclusive grep with an inclusive grep (#10964) * add -n to avoid compiling * switch to an include rather than exclude strategy --- util/travis_utils.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'util/travis_utils.sh') diff --git a/util/travis_utils.sh b/util/travis_utils.sh index e3d806dfba..e949946e22 100755 --- a/util/travis_utils.sh +++ b/util/travis_utils.sh @@ -12,6 +12,7 @@ TRAVIS_COMMIT_RANGE="${TRAVIS_COMMIT_RANGE:-HEAD~1..HEAD}" # Extra variables LOCAL_BRANCH=$(git rev-parse --abbrev-ref HEAD) QMK_CHANGES=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE}) +NUM_CORE_CHANGES=$(echo "$QMK_CHANGES" | grep -Ec -e '^Makefile' -e '^[^/]*.mk' -e '^drivers/' -e '^lib/atsam' -e '^lib/lib8tion/' -e '^platforms' -e '^quantum' -e '^tests' -e '^tmk_core') # if docker is installed - patch calls to within the qmk docker image if command -v docker >/dev/null; then -- cgit v1.2.3