Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit ba4074d

Browse files
authored
[Nova] Migrate Mac Wheels and Conda Binaries off of CircleCI (#1989)
1 parent 909a8ef commit ba4074d

File tree

6 files changed

+6
-172
lines changed

6 files changed

+6
-172
lines changed

.circleci/config.yml

Lines changed: 0 additions & 168 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.circleci/regenerate.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ def build_workflows(prefix="", upload=False, filter_branch=None, indentation=6):
4242
continue
4343
if os_type == "linux" and btype == "conda":
4444
continue
45+
if os_type == "macos":
46+
continue
4547
w += build_workflow_pair(btype, os_type, python_version, fb, prefix, upload)
4648

4749
if not filter_branch:

.github/workflows/build-conda-m1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343
runner-type: macos-m1-12
4444
# Using "development" as trigger event so these binaries are not uploaded
4545
# to official channels yet
46-
trigger-event: development
46+
trigger-event: ${{ github.event_name }}
4747
secrets:
4848
CONDA_PYTORCHBOT_TOKEN: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }}

.github/workflows/build-conda-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343
runner-type: macos-12
4444
# Using "development" as trigger event so these binaries are not uploaded
4545
# to official channels yet
46-
trigger-event: development
46+
trigger-event: ${{ github.event_name }}
4747
secrets:
4848
CONDA_PYTORCHBOT_TOKEN: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }}

.github/workflows/build-wheels-m1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runner-type: macos-m1-12
4242
# Using "development" as trigger event so these binaries are not uploaded
4343
# to official channels yet
44-
trigger-event: development
44+
trigger-event: ${{ github.event_name }}
4545
secrets:
4646
AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID: ${{ secrets.AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID }}
4747
AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY: ${{ secrets.AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY }}

.github/workflows/build-wheels-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runner-type: macos-12
4242
# Using "development" as trigger event so these binaries are not uploaded
4343
# to official channels yet
44-
trigger-event: development
44+
trigger-event: ${{ github.event_name }}
4545
secrets:
4646
AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID: ${{ secrets.AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID }}
4747
AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY: ${{ secrets.AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY }}

0 commit comments

Comments
 (0)