Skip to content

Commit

Permalink
fixup '*' -> '/.*/' for CI filter (#4059)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip authored Jun 15, 2021
1 parent 5d93a87 commit 496cb40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -1432,7 +1432,7 @@ workflows:
filters:
branches:
only:
- '*'
- /.*/
tags:
only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name: build_docs
Expand Down
4 changes: 2 additions & 2 deletions .circleci/regenerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 496cb40

Please sign in to comment.