Commit 14714f29 authored by Andrey Talman's avatar Andrey Talman Committed by Facebook GitHub Bot
Browse files

Remove linux wheel from circleci (#2714)

Summary:
Remove linux wheel from circleci

Pull Request resolved: https://github.com/pytorch/audio/pull/2714

Reviewed By: weiwangmeta

Differential Revision: D39816121

Pulled By: atalman

fbshipit-source-id: a3c99b530896888d7b4271d8b3f27f3c986b3480
parent ce08f8d2
This diff is collapsed.
...@@ -241,28 +241,6 @@ jobs: ...@@ -241,28 +241,6 @@ jobs:
paths: paths:
- ffmpeg - ffmpeg
# binary_linux_wheel:
# <<: *binary_common
# docker:
# - image: << parameters.wheel_docker_image >>
# resource_class: 2xlarge+
# steps:
# - checkout
# - attach_workspace:
# at: third_party
# - run:
# command: |
# export FFMPEG_ROOT=${PWD}/third_party/ffmpeg
# packaging/build_wheel.sh
# environment:
# USE_FFMPEG: true
# - store_artifacts:
# path: dist
# - persist_to_workspace:
# root: dist
# paths:
# - "*"
binary_linux_conda: binary_linux_conda:
<<: *binary_common <<: *binary_common
docker: docker:
......
...@@ -39,6 +39,9 @@ def build_workflows(prefix="", upload=False, filter_branch=None, indentation=6): ...@@ -39,6 +39,9 @@ def build_workflows(prefix="", upload=False, filter_branch=None, indentation=6):
w += build_ffmpeg_job(os_type, filter_branch) w += build_ffmpeg_job(os_type, filter_branch)
for btype in ["wheel", "conda"]: for btype in ["wheel", "conda"]:
for os_type in ["linux", "macos", "windows"]: for os_type in ["linux", "macos", "windows"]:
# linux wheel are no longer done in circleci
if os_type == "linux" and btype == "wheel":
continue
for python_version in PYTHON_VERSIONS: for python_version in PYTHON_VERSIONS:
for cu_version in CU_VERSIONS_DICT[os_type]: for cu_version in CU_VERSIONS_DICT[os_type]:
fb = filter_branch fb = filter_branch
...@@ -55,7 +58,7 @@ def build_workflows(prefix="", upload=False, filter_branch=None, indentation=6): ...@@ -55,7 +58,7 @@ def build_workflows(prefix="", upload=False, filter_branch=None, indentation=6):
# Build on every pull request, but upload only on nightly and tags # 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") w += upload_doc_job("nightly")
w += docstring_parameters_sync_job(None) # w += docstring_parameters_sync_job(None)
return indent(indentation, w) return indent(indentation, w)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment