@@ -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:
@@ -199,7 +195,7 @@ jobs:
199
195
sudo apt install -y libturbojpeg-dev
200
196
pip install --user --progress-bar off mypy
201
197
pip install --user --progress-bar off types-requests
202
- pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly /cpu/torch_nightly .html
198
+ pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/test /cpu/torch_test .html
203
199
pip install --user --progress-bar off --editable .
204
200
mypy --config-file mypy.ini
205
201
@@ -232,7 +228,7 @@ jobs:
232
228
- checkout
233
229
- run:
234
230
command: |
235
- pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly /cpu/torch_nightly .html
231
+ pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/test /cpu/torch_test .html
236
232
# need to install torchvision dependencies due to transitive imports
237
233
pip install --user --progress-bar off .
238
234
pip install pytest
@@ -245,7 +241,7 @@ jobs:
245
241
- checkout
246
242
- run:
247
243
command: |
248
- pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly /cpu/torch_nightly .html
244
+ pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/test /cpu/torch_test .html
249
245
# need to install torchvision dependencies due to transitive imports
250
246
pip install --user --progress-bar off .
251
247
pip install --user onnx
@@ -511,7 +507,7 @@ jobs:
511
507
command: |
512
508
set -x
513
509
source /usr/local/etc/profile.d/conda.sh && conda activate python${PYTHON_VERSION}
514
- conda install -v -y -c pytorch-nightly pytorch
510
+ conda install -v -y -c pytorch-test pytorch
515
511
conda install -v -y $(ls ~/workspace/torchvision*.tar.bz2)
516
512
- run:
517
513
name: smoke test
@@ -530,7 +526,7 @@ jobs:
530
526
command: |
531
527
set -x
532
528
source /usr/local/etc/profile.d/conda.sh && conda activate python${PYTHON_VERSION}
533
- pip install $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/nightly/torch_nightly .html
529
+ pip install $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/test/torch_test .html
534
530
- run:
535
531
name: smoke test
536
532
command: |
@@ -575,7 +571,7 @@ jobs:
575
571
conda create -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
576
572
conda activate python${PYTHON_VERSION}
577
573
conda install Pillow>=5.3.0
578
- conda install -v -y -c pytorch-nightly pytorch
574
+ conda install -v -y -c pytorch-test pytorch
579
575
conda install -v -y $(ls ~/workspace/torchvision*.tar.bz2)
580
576
- run:
581
577
name: smoke test
@@ -599,7 +595,7 @@ jobs:
599
595
eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
600
596
conda create -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
601
597
conda activate python${PYTHON_VERSION}
602
- pip install $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/nightly/torch_nightly .html
598
+ pip install $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/test/torch_test .html
603
599
- run:
604
600
name: smoke test
605
601
command: |
0 commit comments