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

Commit e0d89fe

Browse files
authored
set channel and version (#1605)
1 parent 9df092c commit e0d89fe

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

.circleci/config.yml

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

.circleci/config.yml.in

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,8 @@ commands:
2323
- run:
2424
name: adding UPLOAD_CHANNEL to BASH_ENV
2525
command: |
26-
our_upload_channel=nightly
27-
# On tags upload to test instead
28-
if [[ -n "${CIRCLE_TAG}" ]] || [[ ${CIRCLE_BRANCH} =~ release/* ]]; then
29-
our_upload_channel=test
30-
fi
31-
echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV}
26+
# Hardcoded for release branch
27+
echo "export UPLOAD_CHANNEL=test" >> ${BASH_ENV}
3228
load_conda_channel_flags:
3329
description: "Determines whether we need extra conda channels"
3430
steps:
@@ -60,11 +56,11 @@ binary_common: &binary_common
6056
build_version:
6157
description: "version number of release binary; by default, build a nightly"
6258
type: string
63-
default: ""
59+
default: "0.12.0"
6460
pytorch_version:
6561
description: "PyTorch version to build against; by default, use a nightly"
6662
type: string
67-
default: ""
63+
default: "1.11.0"
6864
# Don't edit these
6965
python_version:
7066
description: "Python version to build against (e.g., 3.8)"

0 commit comments

Comments
 (0)