Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.
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
113 changes: 0 additions & 113 deletions .circleci/config.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .circleci/regenerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ def build_workflows(prefix="", upload=False, filter_branch=None, indentation=6):
if not fb and (os_type == "linux" and btype == "wheel" and python_version == "3.8"):
# the fields must match the build_docs "requires" dependency
fb = "/.*/"
# We'll stop building Linux Wheels from CircleCI. Keeping
# around the Python3.8 build just for docs builds until those
# are also migrated.
if os_type == "linux" and btype == "wheel" and python_version != "3.8":
continue
w += build_workflow_pair(btype, os_type, python_version, fb, prefix, upload)

if not filter_branch:
Expand All @@ -50,6 +55,9 @@ def build_workflow_pair(btype, os_type, python_version, filter_branch, prefix=""
base_workflow_name = f"{prefix}binary_{os_type}_{btype}_py{python_version}"
w.append(generate_base_workflow(base_workflow_name, python_version, filter_branch, os_type, btype))

if os_type == "linux" and btype == "wheel" and python_version == "3.8":
upload = False

if upload:
w.append(generate_upload_workflow(base_workflow_name, filter_branch, btype))
if filter_branch == "nightly" and os_type in ["linux", "windows"]:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wheels-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
smoke-test-script: ${{ matrix.smoke-test-script }}
# Using "development" as trigger event so these binaries are not uploaded
# to official channels yet
trigger-event: development
trigger-event: ${{ github.event_name }}
secrets:
AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID: ${{ secrets.AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID }}
AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY: ${{ secrets.AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY }}