Skip to content

Commit 7c776fb

Browse files
NicolasHugfacebook-github-bot
authored andcommitted
[fbsync] fixup '*' -> '/.*/' for CI filter (#4059)
Reviewed By: fmassa Differential Revision: D29264316 fbshipit-source-id: 9220ed7d303b1994e9056509c722f261c3d6356f
1 parent ada9523 commit 7c776fb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ workflows:
10281028
cu_version: cpu
10291029
filters:
10301030
branches:
1031-
only: '*'
1031+
only: /.*/
10321032
tags:
10331033
only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
10341034
name: binary_linux_wheel_py3.7_cpu
@@ -1432,7 +1432,7 @@ workflows:
14321432
filters:
14331433
branches:
14341434
only:
1435-
- '*'
1435+
- /.*/
14361436
tags:
14371437
only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
14381438
name: build_docs

.circleci/regenerate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ def build_workflows(prefix='', filter_branch=None, upload=False, indentation=6,
5050
btype == 'wheel' and
5151
python_version == '3.7'):
5252
# the fields must match the build_docs "requires" dependency
53-
fb = "*"
53+
fb = "/.*/"
5454
w += workflow_pair(
5555
btype, os_type, python_version, cu_version,
5656
unicode, prefix, upload, filter_branch=fb)
5757

5858
if not filter_branch:
5959
# Build on every pull request, but upload only on nightly and tags
60-
w += build_doc_job('*')
60+
w += build_doc_job('/.*/')
6161
w += upload_doc_job('nightly')
6262
return indent(indentation, w)
6363

0 commit comments

Comments
 (0)