Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
vision
Commits
496cb40e
Unverified
Commit
496cb40e
authored
Jun 15, 2021
by
Matti Picus
Committed by
GitHub
Jun 15, 2021
Browse files
fixup '*' -> '/.*/' for CI filter (#4059)
parent
5d93a87f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
.circleci/config.yml
.circleci/config.yml
+2
-2
.circleci/regenerate.py
.circleci/regenerate.py
+2
-2
No files found.
.circleci/config.yml
View file @
496cb40e
...
...
@@ -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
...
...
.circleci/regenerate.py
View file @
496cb40e
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment