From 03f1cd6ec45feca90e617869cbcebb8b0e7fd1c7 Mon Sep 17 00:00:00 2001 From: satanTime Date: Sat, 7 May 2022 16:42:53 +0200 Subject: [PATCH] build(IE): better pipeline --- .circleci/config.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 09bf2f7d77..c0424e701c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1589,7 +1589,10 @@ jobs: pattern: 'renovate/e2e/.*' value: << pipeline.git.branch >> - matches: - pattern: 'docs/.*' + pattern: 'renovate/docs/.*' + value: << pipeline.git.branch >> + - matches: + pattern: 'master|alpha|beta|next|rc' value: << pipeline.git.branch >> - matches: pattern: 'renovate/e2e/a5/.*' @@ -1643,13 +1646,25 @@ workflows: version: 2 Testing: jobs: - - Core + - Core: + filters: + tags: + only: .* - E2E: requires: - Core - 'Core IE': requires: - Core + filters: + branches: + ignore: + - master + - alpha + - beta + - next + - rc + - renovate/docs/.* - 'Performance': requires: - Core