From fd278ffb8771102f71f764b4ae7bfbb60ee32249 Mon Sep 17 00:00:00 2001 From: Nick Cabatoff Date: Mon, 25 Jan 2021 15:31:05 -0500 Subject: [PATCH] We should allow test-go and test-go-remote-docker to run so that they can satisfy the check. There's a short-circuit within them to avoid taking time if it's a ui/ or docs/ branch. (#10763) --- .circleci/config.yml | 10 ---------- .circleci/config/workflows/ci.yml | 12 ------------ 2 files changed, 22 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8bf90b09f3..118166aee6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2245,19 +2245,9 @@ workflows: - install-ui-dependencies - build-go-dev - test-go: - filters: - branches: - ignore: - - /^docs\/.*/ - - /^ui\/.*/ requires: - pre-flight-checks - test-go-remote-docker: - filters: - branches: - ignore: - - /^docs\/.*/ - - /^ui\/.*/ requires: - pre-flight-checks - test-go-race: diff --git a/.circleci/config/workflows/ci.yml b/.circleci/config/workflows/ci.yml index c9d8238efa..6b1b965e12 100644 --- a/.circleci/config/workflows/ci.yml +++ b/.circleci/config/workflows/ci.yml @@ -24,21 +24,9 @@ jobs: - test-go: requires: - pre-flight-checks - filters: - branches: - # UI and Docs-only branches should skip go tests - ignore: - - /^docs\/.*/ - - /^ui\/.*/ - test-go-remote-docker: requires: - pre-flight-checks - filters: - branches: - # UI and Docs-only branches should skip go tests - ignore: - - /^docs\/.*/ - - /^ui\/.*/ - test-go-race: requires: - pre-flight-checks