@@ -39,7 +39,7 @@ commands:
39
39
- run:
40
40
name: adding UPLOAD_CHANNEL to BASH_ENV
41
41
command: |
42
- our_upload_channel=nightly
42
+ our_upload_channel=test
43
43
# On tags upload to test instead
44
44
if [[ -n "${CIRCLE_TAG}" ]]; then
45
45
our_upload_channel=test
@@ -146,7 +146,7 @@ commands:
146
146
default: true
147
147
steps:
148
148
- pip_install:
149
- args: --pre torch -f https://download.pytorch.org/whl/nightly /cpu/torch_nightly .html
149
+ args: --pre torch -f https://download.pytorch.org/whl/test /cpu/torch_test .html
150
150
descr: Install PyTorch from nightly releases
151
151
- pip_install:
152
152
args: --no-build-isolation <<# parameters.editable >> --editable <</ parameters.editable >> .
@@ -174,11 +174,11 @@ binary_common: &binary_common
174
174
build_version:
175
175
description: "version number of release binary; by default, build a nightly"
176
176
type: string
177
- default: ""
177
+ default: "0.12.0 "
178
178
pytorch_version:
179
179
description: "PyTorch version to build against; by default, use a nightly"
180
180
type: string
181
- default: ""
181
+ default: "1.11.0 "
182
182
# Don't edit these
183
183
python_version:
184
184
description: "Python version to build against (e.g., 3.7)"
@@ -586,7 +586,7 @@ jobs:
586
586
command: |
587
587
set -x
588
588
source /usr/local/etc/profile.d/conda.sh && conda activate python${PYTHON_VERSION}
589
- conda install -v -y -c pytorch-nightly pytorch
589
+ conda install -v -y -c pytorch-test pytorch
590
590
conda install -v -y $(ls ~/workspace/torchvision*.tar.bz2)
591
591
- run:
592
592
name: smoke test
@@ -606,7 +606,7 @@ jobs:
606
606
set -x
607
607
source /usr/local/etc/profile.d/conda.sh && conda activate python${PYTHON_VERSION}
608
608
- pip_install:
609
- args: $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/nightly/torch_nightly .html
609
+ args: $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/test/torch_test .html
610
610
- run:
611
611
name: smoke test
612
612
command: |
@@ -651,7 +651,7 @@ jobs:
651
651
conda create -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
652
652
conda activate python${PYTHON_VERSION}
653
653
conda install "Pillow>=5.3.0,!=8.3.*"
654
- conda install -v -y -c pytorch-nightly pytorch
654
+ conda install -v -y -c pytorch-test pytorch
655
655
conda install -v -y $(ls ~/workspace/torchvision*.tar.bz2)
656
656
- run:
657
657
name: smoke test
@@ -676,7 +676,7 @@ jobs:
676
676
conda create -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
677
677
conda activate python${PYTHON_VERSION}
678
678
- pip_install:
679
- args: $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/nightly/torch_nightly .html
679
+ args: $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/test/torch_test .html
680
680
- run:
681
681
name: smoke test
682
682
command: |
0 commit comments