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

Commit 909a8ef

Browse files
authored
[Nova] Disable Uploads for Linux Conda from CircleCI (#1987)
1 parent d49c64a commit 909a8ef

File tree

3 files changed

+3
-125
lines changed

3 files changed

+3
-125
lines changed

.circleci/config.yml

Lines changed: 0 additions & 124 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
@@ -40,6 +40,8 @@ def build_workflows(prefix="", upload=False, filter_branch=None, indentation=6):
4040
# are also migrated.
4141
if os_type == "linux" and btype == "wheel" and python_version != "3.8":
4242
continue
43+
if os_type == "linux" and btype == "conda":
44+
continue
4345
w += build_workflow_pair(btype, os_type, python_version, fb, prefix, upload)
4446

4547
if not filter_branch:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
smoke-test-script: ${{ matrix.smoke-test-script }}
4343
# Using "development" as trigger event so these binaries are not uploaded
4444
# to official channels yet
45-
trigger-event: development
45+
trigger-event: ${{ github.event_name }}
4646
secrets:
4747
CONDA_PYTORCHBOT_TOKEN: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }}

0 commit comments

Comments
 (0)