Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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