@@ -39,11 +39,7 @@ commands:
39
39
- run:
40
40
name: adding UPLOAD_CHANNEL to BASH_ENV
41
41
command: |
42
- our_upload_channel=nightly
43
- # On tags upload to test instead
44
- if [[ -n "${CIRCLE_TAG}" ]]; then
45
- our_upload_channel=test
46
- fi
42
+ our_upload_channel=test
47
43
echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV}
48
44
49
45
brew_update:
@@ -146,7 +142,7 @@ commands:
146
142
default: true
147
143
steps:
148
144
- pip_install:
149
- args: --pre torch --extra-index-url https://download.pytorch.org/whl/nightly /cpu
145
+ args: --pre torch -f https://download.pytorch.org/whl/test /cpu/torch_test.html
150
146
descr: Install PyTorch from nightly releases
151
147
- pip_install:
152
148
args: --no-build-isolation <<# parameters.editable >> --editable <</ parameters.editable >> .
@@ -194,11 +190,11 @@ binary_common: &binary_common
194
190
build_version:
195
191
description: "version number of release binary; by default, build a nightly"
196
192
type: string
197
- default: ""
193
+ default: "0.14.0 "
198
194
pytorch_version:
199
195
description: "PyTorch version to build against; by default, use a nightly"
200
196
type: string
201
- default: ""
197
+ default: "1.13.0 "
202
198
# Don't edit these
203
199
python_version:
204
200
description: "Python version to build against (e.g., 3.7)"
@@ -634,7 +630,7 @@ jobs:
634
630
set -x
635
631
source /usr/local/etc/profile.d/conda.sh && conda activate python${PYTHON_VERSION}
636
632
- pip_install:
637
- args: $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/nightly/torch_nightly .html
633
+ args: $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/test/torch_test .html
638
634
- run:
639
635
name: smoke test
640
636
command: |
@@ -703,7 +699,7 @@ jobs:
703
699
conda create -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
704
700
conda activate python${PYTHON_VERSION}
705
701
- pip_install:
706
- args: $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/nightly/torch_nightly .html
702
+ args: $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/test/torch_test .html
707
703
- run:
708
704
name: smoke test
709
705
command: |
0 commit comments