From 58a3e517218df137f95455cfe177171fc3c1613e Mon Sep 17 00:00:00 2001 From: Alvin Huang <17609145+alvin-huang@users.noreply.github.com> Date: Fri, 14 Feb 2020 09:40:02 -0500 Subject: [PATCH] skip go build and tests on ui/* branches (#7303) * skip go build and tests on ui/* branches * also filter out lint-consul-retry since it runs in parallel with check-vendor --- .circleci/config.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7809f5b0a1..39d21124f3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -636,7 +636,14 @@ workflows: ignore: - stable-website - /^docs\/.*/ - - lint-consul-retry + - /^ui\/.*/ + - lint-consul-retry: + filters: + branches: + ignore: + - stable-website + - /^docs\/.*/ + - /^ui\/.*/ - go-fmt-and-vet: requires: - check-vendor @@ -661,6 +668,7 @@ workflows: ignore: - stable-website - /^docs\/.*/ + - /^ui\/.*/ - build-386: &require-check-vendor requires: - check-vendor @@ -674,6 +682,7 @@ workflows: ignore: - stable-website - /^docs\/.*/ + - /^ui\/.*/ - dev-upload-s3: &dev-upload requires: - dev-build