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
4ee07ccc
Unverified
Commit
4ee07ccc
authored
Feb 06, 2023
by
Omkar Salpekar
Committed by
GitHub
Feb 06, 2023
Browse files
Remove Excess Py3.8 Linux Wheels Builds (#7178)
parent
2cd25c1a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
84 deletions
+4
-84
.circleci/config.yml
.circleci/config.yml
+0
-81
.circleci/regenerate.py
.circleci/regenerate.py
+4
-3
No files found.
.circleci/config.yml
View file @
4ee07ccc
...
...
@@ -1103,34 +1103,6 @@ workflows:
name
:
binary_linux_wheel_py3.8_cpu
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-cpu
-
binary_linux_wheel
:
conda_docker_image
:
pytorch/conda-builder:cuda116
cu_version
:
cu116
name
:
binary_linux_wheel_py3.8_cu116
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-cuda116
-
binary_linux_wheel
:
conda_docker_image
:
pytorch/conda-builder:cuda117
cu_version
:
cu117
name
:
binary_linux_wheel_py3.8_cu117
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-cuda117
-
binary_linux_wheel
:
conda_docker_image
:
pytorch/conda-builder:cuda118
cu_version
:
cu118
name
:
binary_linux_wheel_py3.8_cu118
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-cuda118
-
binary_linux_wheel
:
cu_version
:
rocm5.2
name
:
binary_linux_wheel_py3.8_rocm5.2
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-rocm:5.2
-
binary_linux_wheel
:
cu_version
:
rocm5.3
name
:
binary_linux_wheel_py3.8_rocm5.3
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-rocm:5.3
-
binary_win_wheel
:
cu_version
:
cpu
filters
:
...
...
@@ -1511,59 +1483,6 @@ workflows:
name
:
nightly_binary_linux_wheel_py3.8_cpu
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-cpu
-
binary_linux_wheel
:
conda_docker_image
:
pytorch/conda-builder:cuda116
cu_version
:
cu116
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_linux_wheel_py3.8_cu116
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-cuda116
-
binary_linux_wheel
:
conda_docker_image
:
pytorch/conda-builder:cuda117
cu_version
:
cu117
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_linux_wheel_py3.8_cu117
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-cuda117
-
binary_linux_wheel
:
conda_docker_image
:
pytorch/conda-builder:cuda118
cu_version
:
cu118
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_linux_wheel_py3.8_cu118
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-cuda118
-
binary_linux_wheel
:
cu_version
:
rocm5.2
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_linux_wheel_py3.8_rocm5.2
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-rocm:5.2
-
binary_linux_wheel
:
cu_version
:
rocm5.3
filters
:
branches
:
only
:
nightly
tags
:
only
:
/v[0-9]+(\.[0-9]+)*-rc[0-9]+/
name
:
nightly_binary_linux_wheel_py3.8_rocm5.3
python_version
:
'
3.8'
wheel_docker_image
:
pytorch/manylinux-rocm:5.3
-
binary_win_wheel
:
cu_version
:
cpu
filters
:
...
...
.circleci/regenerate.py
View file @
4ee07ccc
...
...
@@ -62,10 +62,11 @@ def build_workflows(prefix="", filter_branch=None, upload=False, indentation=6,
# Disable all Linux Wheels Workflows from CircleCI
# since those will now be done through Nova. We'll keep
# around the py3.8 Linux Wheels build since the docs
# around the py3.8
cpu
Linux Wheels build since the docs
# job depends on it.
if
os_type
==
"linux"
and
btype
==
"wheel"
and
python_version
!=
"3.8"
:
continue
if
os_type
==
"linux"
and
btype
==
"wheel"
:
if
not
(
python_version
==
"3.8"
and
cu_version
==
"cpu"
):
continue
# Disable all Macos Wheels Workflows from CircleCI.
if
os_type
==
"macos"
and
btype
==
"wheel"
:
...
...
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