From 7e912139eb44f46157e0927fb2391a76575542a3 Mon Sep 17 00:00:00 2001 From: mattip Date: Tue, 15 Jun 2021 12:24:03 +0300 Subject: [PATCH] fixup '*' -> '/.*/' for CI filter --- .circleci/config.yml | 4 ++-- .circleci/regenerate.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ebbbdebd99f..09b8b57a98b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1028,7 +1028,7 @@ workflows: cu_version: cpu filters: branches: - only: '*' + only: /.*/ tags: only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/ name: binary_linux_wheel_py3.7_cpu @@ -1432,7 +1432,7 @@ workflows: filters: branches: only: - - '*' + - /.*/ tags: only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/ name: build_docs diff --git a/.circleci/regenerate.py b/.circleci/regenerate.py index e64d7d37dad..ce7cf4cedbb 100755 --- a/.circleci/regenerate.py +++ b/.circleci/regenerate.py @@ -50,14 +50,14 @@ def build_workflows(prefix='', filter_branch=None, upload=False, indentation=6, btype == 'wheel' and python_version == '3.7'): # the fields must match the build_docs "requires" dependency - fb = "*" + fb = "/.*/" w += workflow_pair( btype, os_type, python_version, cu_version, unicode, prefix, upload, filter_branch=fb) if not filter_branch: # Build on every pull request, but upload only on nightly and tags - w += build_doc_job('*') + w += build_doc_job('/.*/') w += upload_doc_job('nightly') return indent(indentation, w)