config.yml 115 KB
Newer Older
1
2
3
4
version: 2.1

# How to test the Linux jobs:
#   - Install CircleCI local CLI: https://circleci.com/docs/2.0/local-cli/
Edward Z. Yang's avatar
Edward Z. Yang committed
5
6
7
#   - circleci config process .circleci/config.yml > gen.yml && circleci local execute -c gen.yml --job binary_linux_wheel_py3.7
#     - Replace binary_linux_wheel_py3.7 with the name of the job you want to test.
#       Job names are 'name:' key.
8

9
executors:
10
  windows-cpu:
11
    machine:
12
13
14
15
16
17
18
19
      resource_class: windows.xlarge
      image: windows-server-2019-vs2019:stable
      shell: bash.exe

  windows-gpu:
    machine:
      resource_class: windows.gpu.nvidia.medium
      image: windows-server-2019-nvidia:stable
20
21
      shell: bash.exe

22
23
24
25
26
commands:
  checkout_merge:
    description: "checkout merge branch"
    steps:
      - checkout
27
28
29
30
31
32
33
34
35
#     - run:
#         name: Checkout merge branch
#         command: |
#           set -ex
#           BRANCH=$(git rev-parse --abbrev-ref HEAD)
#           if [[ "$BRANCH" != "master" ]]; then
#             git fetch --force origin ${CIRCLE_BRANCH}/merge:merged/${CIRCLE_BRANCH}
#             git checkout "merged/$CIRCLE_BRANCH"
#           fi
36
37
38
39
40
41
42
43
44
45
46
47
  designate_upload_channel:
    description: "inserts the correct upload channel into ${BASH_ENV}"
    steps:
      - run:
          name: adding UPLOAD_CHANNEL to BASH_ENV
          command: |
            our_upload_channel=nightly
            # On tags upload to test instead
            if [[ -n "${CIRCLE_TAG}" ]]; then
              our_upload_channel=test
            fi
            echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV}
48

49
50
binary_common: &binary_common
  parameters:
51
    # Edit these defaults to do a release
52
53
54
55
56
    build_version:
      description: "version number of release binary; by default, build a nightly"
      type: string
      default: ""
    pytorch_version:
57
      description: "PyTorch version to build against; by default, use a nightly"
58
      type: string
59
      default: ""
60
61
62
63
    # Don't edit these
    python_version:
      description: "Python version to build against (e.g., 3.7)"
      type: string
Edward Z. Yang's avatar
Edward Z. Yang committed
64
65
    cu_version:
      description: "CUDA version to build against, in CU format (e.g., cpu or cu100)"
66
      type: string
guyang3532's avatar
guyang3532 committed
67
      default: "cpu"
68
69
70
71
    unicode_abi:
      description: "Python 2.7 wheel only: whether or not we are cp27mu (default: no)"
      type: string
      default: ""
Edward Z. Yang's avatar
Edward Z. Yang committed
72
73
74
    wheel_docker_image:
      description: "Wheel only: what docker image to use"
      type: string
75
      default: "pytorch/manylinux-cuda101"
76
77
78
79
    conda_docker_image:
      description: "Conda only: what docker image to use"
      type: string
      default: "pytorch/conda-builder:cpu"
80
81
82
83
  environment:
    PYTHON_VERSION: << parameters.python_version >>
    PYTORCH_VERSION: << parameters.pytorch_version >>
    UNICODE_ABI: << parameters.unicode_abi >>
Edward Z. Yang's avatar
Edward Z. Yang committed
84
    CU_VERSION: << parameters.cu_version >>
85

guyang3532's avatar
guyang3532 committed
86
87
88
89
90
smoke_test_common: &smoke_test_common
  <<: *binary_common
  docker:
    - image: torchvision/smoke_test:latest

91
jobs:
92
93
94
95
96
97
98
  circleci_consistency:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
99
            pip install --user --progress-bar off jinja2 pyyaml
100
101
102
            python .circleci/regenerate.py
            git diff --exit-code || (echo ".circleci/config.yml not in sync with config.yml.in! Run .circleci/regenerate.py to update config"; exit 1)

103
104
105
106
107
108
109
110
  python_lint:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user --progress-bar off flake8 typing
111
112
113
114
115
116
117
118
119
            flake8 --config=setup.cfg .

  python_type_check:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
120
121
            sudo apt-get update -y
            sudo apt install -y libturbojpeg-dev
122
123
            pip install --user --progress-bar off numpy mypy
            pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
124
            pip install --user --progress-bar off --editable .
125
            mypy --config-file mypy.ini
126

127
128
129
130
131
132
133
134
135
136
  docstring_parameters_sync:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user pydocstyle
            pydocstyle

137
138
139
140
141
142
143
  clang_format:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
144
145
146
            curl https://oss-clang-format.s3.us-east-2.amazonaws.com/linux64/clang-format-linux64 -o clang-format
            chmod +x clang-format
            sudo mv clang-format /opt/clang-format
147
            ./.circleci/unittest/linux/scripts/run-clang-format.py -r torchvision/csrc --clang-format-executable /opt/clang-format
148

Francisco Massa's avatar
Francisco Massa committed
149
150
151
152
153
154
155
156
157
158
159
160
161
  torchhub_test:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user --progress-bar off numpy
            pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
            # need to install torchvision dependencies due to transitive imports
            pip install --user --progress-bar off --editable .
            python test/test_hub.py

162
163
164
165
166
167
168
169
170
171
172
173
  torch_onnx_test:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user --progress-bar off numpy
            pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
            # need to install torchvision dependencies due to transitive imports
            pip install --user --progress-bar off --editable .
            pip install --user onnx
174
            pip install --user onnxruntime
175
176
            python test/test_onnx.py

177
178
179
  binary_linux_wheel:
    <<: *binary_common
    docker:
Edward Z. Yang's avatar
Edward Z. Yang committed
180
      - image: << parameters.wheel_docker_image >>
181
182
    resource_class: 2xlarge+
    steps:
183
      - checkout_merge
184
      - designate_upload_channel
185
186
187
      - run: packaging/build_wheel.sh
      - store_artifacts:
          path: dist
Edward Z. Yang's avatar
Edward Z. Yang committed
188
189
190
191
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
192
193
194
195

  binary_linux_conda:
    <<: *binary_common
    docker:
196
      - image: "<< parameters.conda_docker_image >>"
197
    resource_class: 2xlarge+
198
    steps:
199
      - checkout_merge
200
      - designate_upload_channel
201
202
203
      - run: packaging/build_conda.sh
      - store_artifacts:
          path: /opt/conda/conda-bld/linux-64
Edward Z. Yang's avatar
Edward Z. Yang committed
204
205
206
207
      - persist_to_workspace:
          root: /opt/conda/conda-bld/linux-64
          paths:
            - "*"
208
209
      - store_test_results:
          path: build_results/
210

Francisco Massa's avatar
Francisco Massa committed
211
  binary_win_conda:
212
213
    <<: *binary_common
    executor: windows-cpu
214
215
    steps:
      - checkout_merge
216
      - designate_upload_channel
217
218
      - run:
          name: Build conda packages
219
          no_output_timeout: 20m
220
          command: |
221
222
223
224
225
226
227
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
            conda activate base
            conda install -yq conda-build "conda-package-handling!=1.5.0"
            packaging/build_conda.sh
228
            rm /C/tools/miniconda3/conda-bld/win-64/vs${VC_YEAR}*.tar.bz2
229
      - store_artifacts:
230
          path: C:/tools/miniconda3/conda-bld/win-64
231
      - persist_to_workspace:
232
          root: C:/tools/miniconda3/conda-bld/win-64
233
234
235
236
237
          paths:
            - "*"
      - store_test_results:
          path: build_results/

238
  binary_win_wheel:
239
240
    <<: *binary_common
    executor: windows-cpu
241
242
    steps:
      - checkout_merge
243
      - designate_upload_channel
244
245
246
      - run:
          name: Build wheel packages
          command: |
247
248
249
250
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_wheel.sh
251
      - store_artifacts:
252
          path: dist
253
      - persist_to_workspace:
254
          root: dist
255
256
257
258
259
          paths:
            - "*"
      - store_test_results:
          path: build_results/

260
261
262
  binary_macos_wheel:
    <<: *binary_common
    macos:
263
      xcode: "9.4.1"
264
    steps:
265
      - checkout_merge
266
      - designate_upload_channel
267
268
269
270
271
272
273
274
275
276
277
      - run:
          # Cannot easily deduplicate this as source'ing activate
          # will set environment variables which we need to propagate
          # to build_wheel.sh
          command: |
            curl -o conda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
            sh conda.sh -b
            source $HOME/miniconda3/bin/activate
            packaging/build_wheel.sh
      - store_artifacts:
          path: dist
Edward Z. Yang's avatar
Edward Z. Yang committed
278
279
280
281
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
282
283
284
285

  binary_macos_conda:
    <<: *binary_common
    macos:
286
      xcode: "9.4.1"
287
    steps:
288
      - checkout_merge
289
      - designate_upload_channel
290
291
292
293
294
295
296
297
298
      - run:
          command: |
            curl -o conda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
            sh conda.sh -b
            source $HOME/miniconda3/bin/activate
            conda install -yq conda-build
            packaging/build_conda.sh
      - store_artifacts:
          path: /Users/distiller/miniconda3/conda-bld/osx-64
Edward Z. Yang's avatar
Edward Z. Yang committed
299
300
301
302
      - persist_to_workspace:
          root: /Users/distiller/miniconda3/conda-bld/osx-64
          paths:
            - "*"
303
304
      - store_test_results:
          path: build_results/
Edward Z. Yang's avatar
Edward Z. Yang committed
305
306
307
308
309
310
311
312

  # Requires org-member context
  binary_conda_upload:
    docker:
      - image: continuumio/miniconda
    steps:
      - attach_workspace:
          at: ~/workspace
313
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
314
315
316
317
318
      - run:
          command: |
            # Prevent credential from leaking
            conda install -yq anaconda-client
            set -x
319
            anaconda  -t "${CONDA_PYTORCHBOT_TOKEN}" upload ~/workspace/*.tar.bz2 -u "pytorch-${UPLOAD_CHANNEL}" --label main --no-progress --force
Edward Z. Yang's avatar
Edward Z. Yang committed
320
321
322

  # Requires org-member context
  binary_wheel_upload:
Edward Z. Yang's avatar
Edward Z. Yang committed
323
324
325
326
    parameters:
      subfolder:
        description: "What whl subfolder to upload to, e.g., blank or cu100/ (trailing slash is important)"
        type: string
Edward Z. Yang's avatar
Edward Z. Yang committed
327
328
329
330
331
    docker:
      - image: circleci/python:3.7
    steps:
      - attach_workspace:
          at: ~/workspace
332
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
333
334
335
336
337
338
339
340
341
342
      - checkout
      - run:
          command: |
            pip install --user awscli
            export PATH="$HOME/.local/bin:$PATH"
            # Prevent credential from leaking
            set +x
            export AWS_ACCESS_KEY_ID="${PYTORCH_BINARY_AWS_ACCESS_KEY_ID}"
            export AWS_SECRET_ACCESS_KEY="${PYTORCH_BINARY_AWS_SECRET_ACCESS_KEY}"
            set -x
Edward Z. Yang's avatar
Edward Z. Yang committed
343
            for pkg in ~/workspace/*.whl; do
344
              aws s3 cp "$pkg" "s3://pytorch/whl/${UPLOAD_CHANNEL}/<< parameters.subfolder >>" --acl public-read
Edward Z. Yang's avatar
Edward Z. Yang committed
345
            done
346

guyang3532's avatar
guyang3532 committed
347
348
349
350
351
  smoke_test_linux_conda:
    <<: *smoke_test_common
    steps:
      - attach_workspace:
          at: ~/workspace
352
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
      - run:
          name: install binaries
          command: |
            set -x
            source /usr/local/etc/profile.d/conda.sh && conda activate python${PYTHON_VERSION}
            conda install -v -y -c pytorch-nightly pytorch
            conda install -v -y $(ls ~/workspace/torchvision*.tar.bz2)
      - run:
          name: smoke test
          command: |
            source /usr/local/etc/profile.d/conda.sh && conda activate python${PYTHON_VERSION}
            python -c "import torchvision"

  smoke_test_linux_pip:
    <<: *smoke_test_common
    steps:
      - attach_workspace:
          at: ~/workspace
371
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
      - run:
          name: install binaries
          command: |
            set -x
            source /usr/local/etc/profile.d/conda.sh && conda activate python${PYTHON_VERSION}
            pip install $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/nightly/torch_nightly.html
      - run:
          name: smoke test
          command: |
            source /usr/local/etc/profile.d/conda.sh && conda activate python${PYTHON_VERSION}
            python -c "import torchvision"

  smoke_test_docker_image_build:
    machine:
      image: ubuntu-1604:201903-01
    resource_class: large
    environment:
      image_name: torchvision/smoke_test
    steps:
      - checkout
392
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
      - run:
          name: Build and push Docker image
          no_output_timeout: "1h"
          command: |
            set +x
            echo "${DOCKER_HUB_TOKEN}" | docker login --username "${DOCKER_HUB_USERNAME}" --password-stdin
            set -x
            cd .circleci/smoke_test/docker && docker build . -t ${image_name}:${CIRCLE_WORKFLOW_ID}
            docker tag ${image_name}:${CIRCLE_WORKFLOW_ID} ${image_name}:latest
            docker push ${image_name}:${CIRCLE_WORKFLOW_ID}
            docker push ${image_name}:latest

  smoke_test_win_conda:
    <<: *binary_common
    executor:
      name: windows-cpu
    steps:
      - attach_workspace:
          at: ~/workspace
412
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
413
414
415
416
417
418
      - run:
          name: install binaries
          command: |
            set -x
            eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
            conda env remove -n python${PYTHON_VERSION} || true
419
420
421
422
423
            CONDA_CHANNEL_FLAGS=""
            if [[ "${PYTHON_VERSION}" = 3.9 ]]; then
              CONDA_CHANNEL_FLAGS="-c=conda-forge"
            fi
            conda create ${CONDA_CHANNEL_FLAGS} -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
guyang3532's avatar
guyang3532 committed
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
            conda activate python${PYTHON_VERSION}
            conda install Pillow
            conda install -v -y -c pytorch-nightly pytorch
            conda install -v -y $(ls ~/workspace/torchvision*.tar.bz2)
      - run:
          name: smoke test
          command: |
            eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
            conda activate python${PYTHON_VERSION}
            python -c "import torchvision"

  smoke_test_win_pip:
    <<: *binary_common
    executor:
      name: windows-cpu
    steps:
      - attach_workspace:
          at: ~/workspace
442
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
443
444
445
446
447
      - run:
          name: install binaries
          command: |
            set -x
            eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
448
449
450
451
452
            CONDA_CHANNEL_FLAGS=""
            if [[ "${PYTHON_VERSION}" = 3.9 ]]; then
              CONDA_CHANNEL_FLAGS="-c=conda-forge"
            fi
            conda create ${CONDA_CHANNEL_FLAGS} -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
guyang3532's avatar
guyang3532 committed
453
454
455
456
457
458
459
460
461
462
            conda create -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
            conda activate python${PYTHON_VERSION}
            pip install $(ls ~/workspace/torchvision*.whl) --pre -f https://download.pytorch.org/whl/nightly/torch_nightly.html
      - run:
          name: smoke test
          command: |
            eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
            conda activate python${PYTHON_VERSION}
            python -c "import torchvision"

463
464
465
466
467
468
469
  unittest_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout
470
      - designate_upload_channel
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
      - restore_cache:

          keys:
            - env-v2-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

      - run:
          name: Setup
          command: .circleci/unittest/linux/scripts/setup_env.sh
      - save_cache:

          key: env-v2-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
          command: .circleci/unittest/linux/scripts/install.sh
      - run:
          name: Run tests
          command: .circleci/unittest/linux/scripts/run_test.sh
      - run:
          name: Post process
          command: .circleci/unittest/linux/scripts/post_process.sh
      - store_test_results:
          path: test-results

  unittest_linux_gpu:
    <<: *binary_common
    machine:
      image: ubuntu-1604-cuda-10.1:201909-23
    resource_class: gpu.small
    environment:
      image_name: "pytorch/manylinux-cuda101"
509
      PYTHON_VERSION: << parameters.python_version >>
510
511
    steps:
      - checkout
512
      - designate_upload_channel
513
514
515
516
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
517
518
519
520
521
      - restore_cache:

          keys:
            - env-v3-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

522
523
      - run:
          name: Setup
524
          command: docker run -e PYTHON_VERSION -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/setup_env.sh
525
526
      - save_cache:

527
          key: env-v3-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}
528
529
530
531
532
533

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
534
          command: docker run -t --gpus all -v $PWD:$PWD -w $PWD -e UPLOAD_CHANNEL -e CU_VERSION "${image_name}" .circleci/unittest/linux/scripts/install.sh
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
      - run:
          name: Run tests
          command: docker run -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/run_test.sh
      - run:
          name: Post Process
          command: docker run -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/post_process.sh
      - store_test_results:
          path: test-results

  unittest_windows_cpu:
    <<: *binary_common
    executor:
      name: windows-cpu
    steps:
      - checkout
550
      - designate_upload_channel
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
      - restore_cache:

          keys:
            - env-v2-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

      - run:
          name: Setup
          command: .circleci/unittest/windows/scripts/setup_env.sh
      - save_cache:

          key: env-v2-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
          command: .circleci/unittest/windows/scripts/install.sh
      - run:
          name: Run tests
          command: .circleci/unittest/windows/scripts/run_test.sh
      - run:
          name: Post process
          command: .circleci/unittest/windows/scripts/post_process.sh
      - store_test_results:
          path: test-results

  unittest_windows_gpu:
    <<: *binary_common
    executor:
      name: windows-gpu
    environment:
      CUDA_VERSION: "10.1"
588
      PYTHON_VERSION: << parameters.python_version >>
589
590
    steps:
      - checkout
591
      - designate_upload_channel
592
593
594
595
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
596
597
598
599
600
      - restore_cache:

          keys:
            - env-v1-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}
 
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
      - run:
          name: Setup
          command: .circleci/unittest/windows/scripts/setup_env.sh
      - save_cache:

          key: env-v1-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
          command: .circleci/unittest/windows/scripts/install.sh
      - run:
          name: Run tests
          command: .circleci/unittest/windows/scripts/run_test.sh
      - run:
          name: Post process
          command: .circleci/unittest/windows/scripts/post_process.sh
      - store_test_results:
          path: test-results
622

Francisco Massa's avatar
Francisco Massa committed
623
624
625
626
627
628
629
  unittest_macos_cpu:
    <<: *binary_common
    macos:
      xcode: "9.4.1"
    resource_class: large
    steps:
      - checkout
630
      - designate_upload_channel
Francisco Massa's avatar
Francisco Massa committed
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
      - run:
          name: Install wget
          command: HOMEBREW_NO_AUTO_UPDATE=1 brew install wget
          # Disable brew auto update which is very slow
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
      - restore_cache:

          keys:
            - env-v3-macos-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

      - run:
          name: Setup
          command: .circleci/unittest/linux/scripts/setup_env.sh
      - save_cache:

          key: env-v3-macos-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
          command: .circleci/unittest/linux/scripts/install.sh
      - run:
          name: Run tests
          command: .circleci/unittest/linux/scripts/run_test.sh
      - run:
          name: Post process
          command: .circleci/unittest/linux/scripts/post_process.sh
      - store_test_results:
          path: test-results

666
667
668
669
670
671
672
  cmake_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout_merge
673
      - designate_upload_channel
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
      - run:
          name: Setup conda
          command: .circleci/unittest/linux/scripts/setup_env.sh
      - run: packaging/build_cmake.sh

  cmake_linux_gpu:
    <<: *binary_common
    machine:
      image: ubuntu-1604-cuda-10.1:201909-23
    resource_class: gpu.small
    environment:
      PYTHON_VERSION: << parameters.python_version >>
      PYTORCH_VERSION: << parameters.pytorch_version >>
      UNICODE_ABI: << parameters.unicode_abi >>
      CU_VERSION: << parameters.cu_version >>
    steps:
      - checkout_merge
691
      - designate_upload_channel
692
693
694
695
696
      - run:
          name: Setup conda
          command: docker run -e CU_VERSION -e PYTHON_VERSION -e UNICODE_ABI -e PYTORCH_VERSION -t --gpus all -v $PWD:$PWD -w $PWD << parameters.wheel_docker_image >> .circleci/unittest/linux/scripts/setup_env.sh
      - run:
          name: Build torchvision C++ distribution and test
697
          command: docker run -e CU_VERSION -e PYTHON_VERSION -e UNICODE_ABI -e PYTORCH_VERSION -e UPLOAD_CHANNEL -t --gpus all -v $PWD:$PWD -w $PWD << parameters.wheel_docker_image >> packaging/build_cmake.sh
698
699
700
701

  cmake_macos_cpu:
    <<: *binary_common
    macos:
702
      xcode: "9.4.1"
703
704
    steps:
      - checkout_merge
705
      - designate_upload_channel
706
707
708
709
710
711
712
713
714
715
716
717
718
719
      - run:
          command: |
            curl -o conda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
            sh conda.sh -b
            source $HOME/miniconda3/bin/activate
            conda install -yq conda-build cmake
            packaging/build_cmake.sh

  cmake_windows_cpu:
    <<: *binary_common
    executor:
      name: windows-cpu
    steps:
      - checkout_merge
720
      - designate_upload_channel
721
722
723
724
725
726
727
728
729
730
731
732
      - run:
          command: |
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/build_cmake.sh

  cmake_windows_gpu:
    <<: *binary_common
    executor:
      name: windows-gpu
    steps:
      - checkout_merge
733
      - designate_upload_channel
734
735
736
737
738
739
740
      - run:
          command: |
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_cmake.sh

741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
  build_docs:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda100"
    resource_class: 2xlarge+
    steps:
      - attach_workspace:
          at: ~/workspace
      - checkout
      - run:
          name: Setup
          command: .circleci/unittest/linux/scripts/setup_env.sh
      - designate_upload_channel
      - run:
          name: Install torchvision
          command: .circleci/unittest/linux/scripts/install.sh
      - run:
          name: Build docs
          command: |
            set -ex
            tag=${CIRCLE_TAG:1:5}
            VERSION=${tag:-master}
            eval "$(./conda/bin/conda shell.bash hook)"
            conda activate ./env
            pushd docs
            pip install -r requirements.txt
            make html
            popd
      - persist_to_workspace:
          root: ./
          paths:
            - "*"
      - store_artifacts:
          path: ./docs/build/html
          destination: docs

  upload_docs:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda100"
    resource_class: 2xlarge+
    steps:
      - attach_workspace:
          at: ~/workspace
      - run:
          name: Generate netrc
          command: |
            # set credentials for https pushing
            # requires the org-member context
            cat > ~/.netrc \<<DONE
              machine github.com
              login pytorchbot
              password ${GITHUB_PYTORCHBOT_TOKEN}
            DONE
      - run:
          name: Upload docs
          command: |
            # Don't use "checkout" step since it uses ssh, which cannot git push
            # https://circleci.com/docs/2.0/configuration-reference/#checkout
            set -ex
            tag=${CIRCLE_TAG:1:5}
            target=${tag:-master}
            ~/workspace/.circleci/build_docs/commit_docs.sh ~/workspace $target


806
807
808
809
workflows:
  build:
    jobs:
      - circleci_consistency
Edward Z. Yang's avatar
Edward Z. Yang committed
810
      - binary_linux_wheel:
811
          conda_docker_image: pytorch/conda-builder:cpu
812
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
813
          name: binary_linux_wheel_py3.6_cpu
814
          python_version: '3.6'
815
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
816
      - binary_linux_wheel:
817
          conda_docker_image: pytorch/conda-builder:cuda101
Francisco Massa's avatar
Francisco Massa committed
818
819
820
          cu_version: cu101
          name: binary_linux_wheel_py3.6_cu101
          python_version: '3.6'
821
822
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
823
          conda_docker_image: pytorch/conda-builder:cuda102
824
825
826
827
          cu_version: cu102
          name: binary_linux_wheel_py3.6_cu102
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda102
peterjc123's avatar
peterjc123 committed
828
      - binary_linux_wheel:
829
830
831
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_wheel_py3.6_cu111
peterjc123's avatar
peterjc123 committed
832
          python_version: '3.6'
833
          wheel_docker_image: pytorch/manylinux-cuda111
Edward Z. Yang's avatar
Edward Z. Yang committed
834
      - binary_linux_wheel:
835
          conda_docker_image: pytorch/conda-builder:cpu
836
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
837
          name: binary_linux_wheel_py3.7_cpu
838
          python_version: '3.7'
839
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
840
      - binary_linux_wheel:
841
          conda_docker_image: pytorch/conda-builder:cuda101
Francisco Massa's avatar
Francisco Massa committed
842
843
844
          cu_version: cu101
          name: binary_linux_wheel_py3.7_cu101
          python_version: '3.7'
845
846
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
847
          conda_docker_image: pytorch/conda-builder:cuda102
848
849
850
851
          cu_version: cu102
          name: binary_linux_wheel_py3.7_cu102
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda102
peterjc123's avatar
peterjc123 committed
852
      - binary_linux_wheel:
853
854
855
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_wheel_py3.7_cu111
peterjc123's avatar
peterjc123 committed
856
          python_version: '3.7'
857
          wheel_docker_image: pytorch/manylinux-cuda111
858
      - binary_linux_wheel:
859
          conda_docker_image: pytorch/conda-builder:cpu
860
861
862
          cu_version: cpu
          name: binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
863
          wheel_docker_image: pytorch/manylinux-cuda102
864
      - binary_linux_wheel:
865
          conda_docker_image: pytorch/conda-builder:cuda101
866
867
868
          cu_version: cu101
          name: binary_linux_wheel_py3.8_cu101
          python_version: '3.8'
869
870
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
871
          conda_docker_image: pytorch/conda-builder:cuda102
872
873
874
875
          cu_version: cu102
          name: binary_linux_wheel_py3.8_cu102
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda102
peterjc123's avatar
peterjc123 committed
876
      - binary_linux_wheel:
877
878
879
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_wheel_py3.8_cu111
peterjc123's avatar
peterjc123 committed
880
          python_version: '3.8'
881
          wheel_docker_image: pytorch/manylinux-cuda111
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
      - binary_linux_wheel:
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
          name: binary_linux_wheel_py3.9_cpu
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
      - binary_linux_wheel:
          conda_docker_image: pytorch/conda-builder:cuda101
          cu_version: cu101
          name: binary_linux_wheel_py3.9_cu101
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
          conda_docker_image: pytorch/conda-builder:cuda102
          cu_version: cu102
          name: binary_linux_wheel_py3.9_cu102
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
      - binary_linux_wheel:
901
902
903
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_wheel_py3.9_cu111
904
          python_version: '3.9'
905
          wheel_docker_image: pytorch/manylinux-cuda111
Edward Z. Yang's avatar
Edward Z. Yang committed
906
      - binary_macos_wheel:
907
          conda_docker_image: pytorch/conda-builder:cpu
908
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
909
          name: binary_macos_wheel_py3.6_cpu
910
          python_version: '3.6'
911
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
912
      - binary_macos_wheel:
913
          conda_docker_image: pytorch/conda-builder:cpu
914
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
915
          name: binary_macos_wheel_py3.7_cpu
916
          python_version: '3.7'
917
          wheel_docker_image: pytorch/manylinux-cuda102
918
      - binary_macos_wheel:
919
          conda_docker_image: pytorch/conda-builder:cpu
920
921
922
          cu_version: cpu
          name: binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
923
          wheel_docker_image: pytorch/manylinux-cuda102
924
925
926
927
928
929
      - binary_macos_wheel:
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
          name: binary_macos_wheel_py3.9_cpu
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
930
      - binary_win_wheel:
931
932
933
934
          cu_version: cpu
          filters:
            branches:
              only: master
935
936
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
937
938
          name: binary_win_wheel_py3.6_cpu
          python_version: '3.6'
939
      - binary_win_wheel:
940
          cu_version: cu101
941
942
943
          filters:
            branches:
              only: master
944
945
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
946
947
          name: binary_win_wheel_py3.6_cu101
          python_version: '3.6'
948
      - binary_win_wheel:
949
          cu_version: cu102
950
951
952
          filters:
            branches:
              only: master
953
954
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
955
956
          name: binary_win_wheel_py3.6_cu102
          python_version: '3.6'
peterjc123's avatar
peterjc123 committed
957
      - binary_win_wheel:
958
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
959
960
961
962
963
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
964
          name: binary_win_wheel_py3.6_cu111
peterjc123's avatar
peterjc123 committed
965
          python_version: '3.6'
966
      - binary_win_wheel:
967
968
969
970
          cu_version: cpu
          filters:
            branches:
              only: master
971
972
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
973
974
          name: binary_win_wheel_py3.7_cpu
          python_version: '3.7'
975
      - binary_win_wheel:
976
          cu_version: cu101
977
978
979
          filters:
            branches:
              only: master
980
981
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
982
983
          name: binary_win_wheel_py3.7_cu101
          python_version: '3.7'
984
      - binary_win_wheel:
985
          cu_version: cu102
986
987
988
          filters:
            branches:
              only: master
989
990
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
991
992
          name: binary_win_wheel_py3.7_cu102
          python_version: '3.7'
peterjc123's avatar
peterjc123 committed
993
      - binary_win_wheel:
994
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
995
996
997
998
999
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1000
          name: binary_win_wheel_py3.7_cu111
peterjc123's avatar
peterjc123 committed
1001
          python_version: '3.7'
1002
      - binary_win_wheel:
1003
          cu_version: cpu
1004
1005
1006
1007
1008
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1009
1010
          name: binary_win_wheel_py3.8_cpu
          python_version: '3.8'
1011
      - binary_win_wheel:
1012
          cu_version: cu101
1013
1014
1015
          filters:
            branches:
              only: master
1016
1017
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1018
1019
          name: binary_win_wheel_py3.8_cu101
          python_version: '3.8'
1020
      - binary_win_wheel:
1021
          cu_version: cu102
peterjc123's avatar
peterjc123 committed
1022
1023
1024
1025
1026
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1027
1028
          name: binary_win_wheel_py3.8_cu102
          python_version: '3.8'
peterjc123's avatar
peterjc123 committed
1029
      - binary_win_wheel:
1030
          cu_version: cu111
1031
1032
1033
1034
1035
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1036
          name: binary_win_wheel_py3.8_cu111
peterjc123's avatar
peterjc123 committed
1037
          python_version: '3.8'
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
      - binary_win_wheel:
          cu_version: cpu
          name: binary_win_wheel_py3.9_cpu
          python_version: '3.9'
      - binary_win_wheel:
          cu_version: cu101
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: binary_win_wheel_py3.9_cu101
          python_version: '3.9'
      - binary_win_wheel:
          cu_version: cu102
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: binary_win_wheel_py3.9_cu102
          python_version: '3.9'
      - binary_win_wheel:
1061
1062
          cu_version: cu111
          name: binary_win_wheel_py3.9_cu111
1063
          python_version: '3.9'
Edward Z. Yang's avatar
Edward Z. Yang committed
1064
      - binary_linux_conda:
1065
          conda_docker_image: pytorch/conda-builder:cpu
1066
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1067
          name: binary_linux_conda_py3.6_cpu
1068
          python_version: '3.6'
1069
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1070
      - binary_linux_conda:
1071
          conda_docker_image: pytorch/conda-builder:cuda101
Francisco Massa's avatar
Francisco Massa committed
1072
1073
1074
          cu_version: cu101
          name: binary_linux_conda_py3.6_cu101
          python_version: '3.6'
1075
1076
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
1077
          conda_docker_image: pytorch/conda-builder:cuda102
1078
1079
1080
1081
          cu_version: cu102
          name: binary_linux_conda_py3.6_cu102
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda102
peterjc123's avatar
peterjc123 committed
1082
      - binary_linux_conda:
1083
1084
1085
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_conda_py3.6_cu111
peterjc123's avatar
peterjc123 committed
1086
          python_version: '3.6'
1087
          wheel_docker_image: pytorch/manylinux-cuda111
Edward Z. Yang's avatar
Edward Z. Yang committed
1088
      - binary_linux_conda:
1089
          conda_docker_image: pytorch/conda-builder:cpu
1090
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1091
          name: binary_linux_conda_py3.7_cpu
1092
          python_version: '3.7'
1093
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1094
      - binary_linux_conda:
1095
          conda_docker_image: pytorch/conda-builder:cuda101
Francisco Massa's avatar
Francisco Massa committed
1096
1097
1098
          cu_version: cu101
          name: binary_linux_conda_py3.7_cu101
          python_version: '3.7'
1099
1100
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
1101
          conda_docker_image: pytorch/conda-builder:cuda102
1102
1103
1104
1105
          cu_version: cu102
          name: binary_linux_conda_py3.7_cu102
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda102
peterjc123's avatar
peterjc123 committed
1106
      - binary_linux_conda:
1107
1108
1109
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_conda_py3.7_cu111
peterjc123's avatar
peterjc123 committed
1110
          python_version: '3.7'
1111
          wheel_docker_image: pytorch/manylinux-cuda111
1112
      - binary_linux_conda:
1113
          conda_docker_image: pytorch/conda-builder:cpu
1114
1115
1116
          cu_version: cpu
          name: binary_linux_conda_py3.8_cpu
          python_version: '3.8'
1117
          wheel_docker_image: pytorch/manylinux-cuda102
1118
      - binary_linux_conda:
1119
          conda_docker_image: pytorch/conda-builder:cuda101
1120
1121
1122
          cu_version: cu101
          name: binary_linux_conda_py3.8_cu101
          python_version: '3.8'
1123
1124
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
1125
          conda_docker_image: pytorch/conda-builder:cuda102
1126
1127
1128
1129
          cu_version: cu102
          name: binary_linux_conda_py3.8_cu102
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda102
peterjc123's avatar
peterjc123 committed
1130
      - binary_linux_conda:
1131
1132
1133
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_conda_py3.8_cu111
peterjc123's avatar
peterjc123 committed
1134
          python_version: '3.8'
1135
          wheel_docker_image: pytorch/manylinux-cuda111
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
      - binary_linux_conda:
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
          name: binary_linux_conda_py3.9_cpu
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
      - binary_linux_conda:
          conda_docker_image: pytorch/conda-builder:cuda101
          cu_version: cu101
          name: binary_linux_conda_py3.9_cu101
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
          conda_docker_image: pytorch/conda-builder:cuda102
          cu_version: cu102
          name: binary_linux_conda_py3.9_cu102
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
      - binary_linux_conda:
1155
1156
1157
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_conda_py3.9_cu111
1158
          python_version: '3.9'
1159
          wheel_docker_image: pytorch/manylinux-cuda111
Edward Z. Yang's avatar
Edward Z. Yang committed
1160
      - binary_macos_conda:
1161
          conda_docker_image: pytorch/conda-builder:cpu
1162
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1163
          name: binary_macos_conda_py3.6_cpu
1164
          python_version: '3.6'
1165
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1166
      - binary_macos_conda:
1167
          conda_docker_image: pytorch/conda-builder:cpu
1168
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1169
          name: binary_macos_conda_py3.7_cpu
1170
          python_version: '3.7'
1171
          wheel_docker_image: pytorch/manylinux-cuda102
1172
      - binary_macos_conda:
1173
          conda_docker_image: pytorch/conda-builder:cpu
1174
1175
1176
          cu_version: cpu
          name: binary_macos_conda_py3.8_cpu
          python_version: '3.8'
1177
          wheel_docker_image: pytorch/manylinux-cuda102
1178
1179
1180
1181
1182
1183
      - binary_macos_conda:
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
          name: binary_macos_conda_py3.9_cpu
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
1184
      - binary_win_conda:
1185
1186
1187
1188
          cu_version: cpu
          filters:
            branches:
              only: master
1189
1190
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1191
1192
          name: binary_win_conda_py3.6_cpu
          python_version: '3.6'
1193
      - binary_win_conda:
1194
          cu_version: cu101
1195
1196
1197
          filters:
            branches:
              only: master
1198
1199
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1200
1201
          name: binary_win_conda_py3.6_cu101
          python_version: '3.6'
1202
      - binary_win_conda:
1203
          cu_version: cu102
1204
1205
1206
          filters:
            branches:
              only: master
1207
1208
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1209
1210
          name: binary_win_conda_py3.6_cu102
          python_version: '3.6'
peterjc123's avatar
peterjc123 committed
1211
      - binary_win_conda:
1212
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
1213
1214
1215
1216
1217
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1218
          name: binary_win_conda_py3.6_cu111
peterjc123's avatar
peterjc123 committed
1219
          python_version: '3.6'
1220
      - binary_win_conda:
1221
1222
1223
1224
          cu_version: cpu
          filters:
            branches:
              only: master
1225
1226
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1227
1228
          name: binary_win_conda_py3.7_cpu
          python_version: '3.7'
1229
      - binary_win_conda:
1230
          cu_version: cu101
1231
1232
1233
          filters:
            branches:
              only: master
1234
1235
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1236
1237
          name: binary_win_conda_py3.7_cu101
          python_version: '3.7'
1238
      - binary_win_conda:
1239
          cu_version: cu102
1240
1241
1242
          filters:
            branches:
              only: master
1243
1244
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1245
1246
          name: binary_win_conda_py3.7_cu102
          python_version: '3.7'
peterjc123's avatar
peterjc123 committed
1247
      - binary_win_conda:
1248
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
1249
1250
1251
1252
1253
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1254
          name: binary_win_conda_py3.7_cu111
peterjc123's avatar
peterjc123 committed
1255
          python_version: '3.7'
1256
      - binary_win_conda:
1257
          cu_version: cpu
1258
1259
1260
1261
1262
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1263
1264
          name: binary_win_conda_py3.8_cpu
          python_version: '3.8'
1265
      - binary_win_conda:
1266
          cu_version: cu101
1267
1268
1269
          filters:
            branches:
              only: master
1270
1271
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1272
1273
          name: binary_win_conda_py3.8_cu101
          python_version: '3.8'
1274
      - binary_win_conda:
1275
          cu_version: cu102
peterjc123's avatar
peterjc123 committed
1276
1277
1278
1279
1280
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1281
1282
          name: binary_win_conda_py3.8_cu102
          python_version: '3.8'
peterjc123's avatar
peterjc123 committed
1283
      - binary_win_conda:
1284
          cu_version: cu111
1285
1286
1287
1288
1289
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1290
          name: binary_win_conda_py3.8_cu111
peterjc123's avatar
peterjc123 committed
1291
          python_version: '3.8'
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
      - binary_win_conda:
          cu_version: cpu
          name: binary_win_conda_py3.9_cpu
          python_version: '3.9'
      - binary_win_conda:
          cu_version: cu101
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: binary_win_conda_py3.9_cu101
          python_version: '3.9'
      - binary_win_conda:
          cu_version: cu102
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: binary_win_conda_py3.9_cu102
          python_version: '3.9'
      - binary_win_conda:
1315
1316
          cu_version: cu111
          name: binary_win_conda_py3.9_cu111
1317
          python_version: '3.9'
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
      - build_docs:
          name: build_docs
          python_version: '3.7'
          requires:
          - binary_linux_wheel_py3.7_cpu
      - upload_docs:
          context: org-member
          filters:
            branches:
              only:
              - nightly
1329
1330
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1331
1332
1333
1334
          name: upload_docs
          python_version: '3.7'
          requires:
          - build_docs
1335
      - python_lint
1336
      - python_type_check
1337
      - docstring_parameters_sync
1338
      - clang_format
Francisco Massa's avatar
Francisco Massa committed
1339
      - torchhub_test
1340
      - torch_onnx_test
Edward Z. Yang's avatar
Edward Z. Yang committed
1341

1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
  unittest:
    jobs:
      - unittest_linux_cpu:
          cu_version: cpu
          name: unittest_linux_cpu_py3.6
          python_version: '3.6'
      - unittest_linux_cpu:
          cu_version: cpu
          name: unittest_linux_cpu_py3.7
          python_version: '3.7'
      - unittest_linux_cpu:
          cu_version: cpu
          name: unittest_linux_cpu_py3.8
          python_version: '3.8'
1356
1357
1358
1359
      - unittest_linux_cpu:
          cu_version: cpu
          name: unittest_linux_cpu_py3.9
          python_version: '3.9'
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
      - unittest_linux_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_linux_gpu_py3.6
          python_version: '3.6'
      - unittest_linux_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_linux_gpu_py3.7
          python_version: '3.7'
      - unittest_linux_gpu:
          cu_version: cu101
          name: unittest_linux_gpu_py3.8
          python_version: '3.8'
1382
1383
1384
1385
1386
1387
1388
1389
1390
      - unittest_linux_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_linux_gpu_py3.9
          python_version: '3.9'
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
      - unittest_windows_cpu:
          cu_version: cpu
          name: unittest_windows_cpu_py3.6
          python_version: '3.6'
      - unittest_windows_cpu:
          cu_version: cpu
          name: unittest_windows_cpu_py3.7
          python_version: '3.7'
      - unittest_windows_cpu:
          cu_version: cpu
          name: unittest_windows_cpu_py3.8
          python_version: '3.8'
1403
1404
1405
1406
      - unittest_windows_cpu:
          cu_version: cpu
          name: unittest_windows_cpu_py3.9
          python_version: '3.9'
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
      - unittest_windows_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_windows_gpu_py3.6
          python_version: '3.6'
      - unittest_windows_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_windows_gpu_py3.7
          python_version: '3.7'
      - unittest_windows_gpu:
          cu_version: cu101
          name: unittest_windows_gpu_py3.8
          python_version: '3.8'
1429
1430
1431
1432
1433
1434
1435
1436
1437
      - unittest_windows_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_windows_gpu_py3.9
          python_version: '3.9'
Francisco Massa's avatar
Francisco Massa committed
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
      - unittest_macos_cpu:
          cu_version: cpu
          name: unittest_macos_cpu_py3.6
          python_version: '3.6'
      - unittest_macos_cpu:
          cu_version: cpu
          name: unittest_macos_cpu_py3.7
          python_version: '3.7'
      - unittest_macos_cpu:
          cu_version: cpu
          name: unittest_macos_cpu_py3.8
          python_version: '3.8'
1450
1451
1452
1453
      - unittest_macos_cpu:
          cu_version: cpu
          name: unittest_macos_cpu_py3.9
          python_version: '3.9'
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469

  cmake:
    jobs:
      - cmake_linux_cpu:
          cu_version: cpu
          name: cmake_linux_cpu
          python_version: '3.8'
      - cmake_linux_gpu:
          cu_version: cu101
          name: cmake_linux_gpu
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda101
      - cmake_windows_cpu:
          cu_version: cpu
          name: cmake_windows_cpu
          python_version: '3.8'
1470
1471
1472
1473
      - cmake_windows_gpu:
          cu_version: cu101
          name: cmake_windows_gpu
          python_version: '3.8'
1474
1475
1476
1477
1478
      - cmake_macos_cpu:
          cu_version: cpu
          name: cmake_macos_cpu
          python_version: '3.8'

Edward Z. Yang's avatar
Edward Z. Yang committed
1479
1480
1481
  nightly:
    jobs:
      - circleci_consistency
1482
      - python_lint
1483
      - python_type_check
1484
      - docstring_parameters_sync
1485
      - clang_format
Francisco Massa's avatar
Francisco Massa committed
1486
      - torchhub_test
1487
      - torch_onnx_test
1488
      - binary_linux_wheel:
1489
          conda_docker_image: pytorch/conda-builder:cpu
1490
          cu_version: cpu
1491
1492
1493
          filters:
            branches:
              only: nightly
1494
1495
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1496
          name: nightly_binary_linux_wheel_py3.6_cpu
1497
          python_version: '3.6'
1498
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1499
1500
      - binary_wheel_upload:
          context: org-member
1501
1502
1503
          filters:
            branches:
              only: nightly
1504
1505
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1506
          name: nightly_binary_linux_wheel_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1507
          requires:
1508
1509
          - nightly_binary_linux_wheel_py3.6_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1510
1511
1512
1513
1514
1515
1516
1517
1518
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.6_cpu_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_linux_wheel_py3.6_cpu_upload
1519
      - binary_linux_wheel:
1520
          conda_docker_image: pytorch/conda-builder:cuda101
1521
          cu_version: cu101
1522
1523
1524
          filters:
            branches:
              only: nightly
1525
1526
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1527
          name: nightly_binary_linux_wheel_py3.6_cu101
1528
          python_version: '3.6'
1529
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1530
1531
      - binary_wheel_upload:
          context: org-member
1532
1533
1534
          filters:
            branches:
              only: nightly
1535
1536
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1537
          name: nightly_binary_linux_wheel_py3.6_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1538
          requires:
1539
1540
          - nightly_binary_linux_wheel_py3.6_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1541
1542
1543
1544
1545
1546
1547
1548
1549
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.6_cu101_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_linux_wheel_py3.6_cu101_upload
Francisco Massa's avatar
Francisco Massa committed
1550
      - binary_linux_wheel:
1551
          conda_docker_image: pytorch/conda-builder:cuda102
1552
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1553
1554
1555
          filters:
            branches:
              only: nightly
1556
1557
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1558
          name: nightly_binary_linux_wheel_py3.6_cu102
Francisco Massa's avatar
Francisco Massa committed
1559
          python_version: '3.6'
1560
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1561
1562
1563
1564
1565
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1566
1567
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1568
          name: nightly_binary_linux_wheel_py3.6_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1569
          requires:
1570
1571
          - nightly_binary_linux_wheel_py3.6_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1572
1573
1574
1575
1576
1577
1578
1579
1580
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.6_cu102_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_linux_wheel_py3.6_cu102_upload
peterjc123's avatar
peterjc123 committed
1581
      - binary_linux_wheel:
1582
1583
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
1584
1585
1586
1587
1588
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1589
          name: nightly_binary_linux_wheel_py3.6_cu111
peterjc123's avatar
peterjc123 committed
1590
          python_version: '3.6'
1591
          wheel_docker_image: pytorch/manylinux-cuda111
peterjc123's avatar
peterjc123 committed
1592
1593
1594
1595
1596
1597
1598
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1599
          name: nightly_binary_linux_wheel_py3.6_cu111_upload
peterjc123's avatar
peterjc123 committed
1600
          requires:
1601
1602
          - nightly_binary_linux_wheel_py3.6_cu111
          subfolder: cu111/
peterjc123's avatar
peterjc123 committed
1603
1604
1605
1606
1607
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
1608
          name: nightly_binary_linux_wheel_py3.6_cu111_smoke_test_pip
peterjc123's avatar
peterjc123 committed
1609
1610
          python_version: '3.6'
          requires:
1611
          - nightly_binary_linux_wheel_py3.6_cu111_upload
1612
      - binary_linux_wheel:
1613
          conda_docker_image: pytorch/conda-builder:cpu
1614
          cu_version: cpu
1615
1616
1617
          filters:
            branches:
              only: nightly
1618
1619
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1620
          name: nightly_binary_linux_wheel_py3.7_cpu
1621
          python_version: '3.7'
1622
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1623
1624
      - binary_wheel_upload:
          context: org-member
1625
1626
1627
          filters:
            branches:
              only: nightly
1628
1629
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1630
          name: nightly_binary_linux_wheel_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1631
          requires:
1632
1633
          - nightly_binary_linux_wheel_py3.7_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1634
1635
1636
1637
1638
1639
1640
1641
1642
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.7_cpu_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_linux_wheel_py3.7_cpu_upload
1643
      - binary_linux_wheel:
1644
          conda_docker_image: pytorch/conda-builder:cuda101
1645
          cu_version: cu101
1646
1647
1648
          filters:
            branches:
              only: nightly
1649
1650
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1651
          name: nightly_binary_linux_wheel_py3.7_cu101
1652
          python_version: '3.7'
1653
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1654
1655
      - binary_wheel_upload:
          context: org-member
1656
1657
1658
          filters:
            branches:
              only: nightly
1659
1660
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1661
          name: nightly_binary_linux_wheel_py3.7_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1662
          requires:
1663
1664
          - nightly_binary_linux_wheel_py3.7_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1665
1666
1667
1668
1669
1670
1671
1672
1673
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.7_cu101_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_linux_wheel_py3.7_cu101_upload
Francisco Massa's avatar
Francisco Massa committed
1674
      - binary_linux_wheel:
1675
          conda_docker_image: pytorch/conda-builder:cuda102
1676
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1677
1678
1679
          filters:
            branches:
              only: nightly
1680
1681
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1682
          name: nightly_binary_linux_wheel_py3.7_cu102
Francisco Massa's avatar
Francisco Massa committed
1683
          python_version: '3.7'
1684
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1685
1686
1687
1688
1689
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1690
1691
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1692
          name: nightly_binary_linux_wheel_py3.7_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1693
          requires:
1694
1695
          - nightly_binary_linux_wheel_py3.7_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1696
1697
1698
1699
1700
1701
1702
1703
1704
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.7_cu102_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_linux_wheel_py3.7_cu102_upload
peterjc123's avatar
peterjc123 committed
1705
      - binary_linux_wheel:
1706
1707
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
1708
1709
1710
1711
1712
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1713
          name: nightly_binary_linux_wheel_py3.7_cu111
peterjc123's avatar
peterjc123 committed
1714
          python_version: '3.7'
1715
          wheel_docker_image: pytorch/manylinux-cuda111
peterjc123's avatar
peterjc123 committed
1716
1717
1718
1719
1720
1721
1722
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1723
          name: nightly_binary_linux_wheel_py3.7_cu111_upload
peterjc123's avatar
peterjc123 committed
1724
          requires:
1725
1726
          - nightly_binary_linux_wheel_py3.7_cu111
          subfolder: cu111/
peterjc123's avatar
peterjc123 committed
1727
1728
1729
1730
1731
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
1732
          name: nightly_binary_linux_wheel_py3.7_cu111_smoke_test_pip
peterjc123's avatar
peterjc123 committed
1733
1734
          python_version: '3.7'
          requires:
1735
          - nightly_binary_linux_wheel_py3.7_cu111_upload
1736
      - binary_linux_wheel:
1737
          conda_docker_image: pytorch/conda-builder:cpu
1738
1739
1740
1741
          cu_version: cpu
          filters:
            branches:
              only: nightly
1742
1743
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1744
1745
          name: nightly_binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
1746
          wheel_docker_image: pytorch/manylinux-cuda102
1747
1748
1749
1750
1751
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1752
1753
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1754
1755
1756
1757
          name: nightly_binary_linux_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_linux_wheel_py3.8_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1758
1759
1760
1761
1762
1763
1764
1765
1766
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.8_cpu_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_linux_wheel_py3.8_cpu_upload
1767
      - binary_linux_wheel:
1768
          conda_docker_image: pytorch/conda-builder:cuda101
1769
          cu_version: cu101
1770
1771
1772
          filters:
            branches:
              only: nightly
1773
1774
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1775
          name: nightly_binary_linux_wheel_py3.8_cu101
1776
          python_version: '3.8'
1777
          wheel_docker_image: pytorch/manylinux-cuda101
1778
1779
1780
1781
1782
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1783
1784
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1785
          name: nightly_binary_linux_wheel_py3.8_cu101_upload
1786
          requires:
1787
1788
          - nightly_binary_linux_wheel_py3.8_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1789
1790
1791
1792
1793
1794
1795
1796
1797
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.8_cu101_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_linux_wheel_py3.8_cu101_upload
1798
      - binary_linux_wheel:
1799
          conda_docker_image: pytorch/conda-builder:cuda102
1800
          cu_version: cu102
1801
1802
1803
          filters:
            branches:
              only: nightly
1804
1805
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1806
          name: nightly_binary_linux_wheel_py3.8_cu102
1807
          python_version: '3.8'
1808
          wheel_docker_image: pytorch/manylinux-cuda102
1809
1810
1811
1812
1813
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1814
1815
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1816
          name: nightly_binary_linux_wheel_py3.8_cu102_upload
1817
          requires:
1818
1819
          - nightly_binary_linux_wheel_py3.8_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1820
1821
1822
1823
1824
1825
1826
1827
1828
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.8_cu102_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_linux_wheel_py3.8_cu102_upload
peterjc123's avatar
peterjc123 committed
1829
      - binary_linux_wheel:
1830
1831
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
1832
1833
1834
1835
1836
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1837
          name: nightly_binary_linux_wheel_py3.8_cu111
peterjc123's avatar
peterjc123 committed
1838
          python_version: '3.8'
1839
          wheel_docker_image: pytorch/manylinux-cuda111
peterjc123's avatar
peterjc123 committed
1840
1841
1842
1843
1844
1845
1846
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1847
          name: nightly_binary_linux_wheel_py3.8_cu111_upload
peterjc123's avatar
peterjc123 committed
1848
          requires:
1849
1850
          - nightly_binary_linux_wheel_py3.8_cu111
          subfolder: cu111/
peterjc123's avatar
peterjc123 committed
1851
1852
1853
1854
1855
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
1856
          name: nightly_binary_linux_wheel_py3.8_cu111_smoke_test_pip
peterjc123's avatar
peterjc123 committed
1857
1858
          python_version: '3.8'
          requires:
1859
          - nightly_binary_linux_wheel_py3.8_cu111_upload
1860
1861
      - binary_linux_wheel:
          conda_docker_image: pytorch/conda-builder:cpu
1862
          cu_version: cpu
1863
1864
1865
          filters:
            branches:
              only: nightly
1866
1867
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1868
1869
          name: nightly_binary_linux_wheel_py3.9_cpu
          python_version: '3.9'
1870
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1871
1872
      - binary_wheel_upload:
          context: org-member
1873
1874
1875
          filters:
            branches:
              only: nightly
1876
1877
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1878
          name: nightly_binary_linux_wheel_py3.9_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1879
          requires:
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
          - nightly_binary_linux_wheel_py3.9_cpu
          subfolder: cpu/
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.9_cpu_smoke_test_pip
          python_version: '3.9'
          requires:
          - nightly_binary_linux_wheel_py3.9_cpu_upload
      - binary_linux_wheel:
          conda_docker_image: pytorch/conda-builder:cuda101
          cu_version: cu101
1894
1895
1896
          filters:
            branches:
              only: nightly
1897
1898
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1899
1900
1901
          name: nightly_binary_linux_wheel_py3.9_cu101
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1902
1903
      - binary_wheel_upload:
          context: org-member
1904
1905
1906
          filters:
            branches:
              only: nightly
1907
1908
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1909
          name: nightly_binary_linux_wheel_py3.9_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1910
          requires:
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
          - nightly_binary_linux_wheel_py3.9_cu101
          subfolder: cu101/
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.9_cu101_smoke_test_pip
          python_version: '3.9'
          requires:
          - nightly_binary_linux_wheel_py3.9_cu101_upload
      - binary_linux_wheel:
          conda_docker_image: pytorch/conda-builder:cuda102
          cu_version: cu102
1925
1926
1927
          filters:
            branches:
              only: nightly
1928
1929
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1930
1931
          name: nightly_binary_linux_wheel_py3.9_cu102
          python_version: '3.9'
1932
          wheel_docker_image: pytorch/manylinux-cuda102
1933
1934
1935
1936
1937
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1938
1939
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1940
          name: nightly_binary_linux_wheel_py3.9_cu102_upload
1941
          requires:
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
          - nightly_binary_linux_wheel_py3.9_cu102
          subfolder: cu102/
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.9_cu102_smoke_test_pip
          python_version: '3.9'
          requires:
          - nightly_binary_linux_wheel_py3.9_cu102_upload
      - binary_linux_wheel:
1954
1955
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
1956
1957
1958
          filters:
            branches:
              only: nightly
1959
1960
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1961
          name: nightly_binary_linux_wheel_py3.9_cu111
1962
          python_version: '3.9'
1963
          wheel_docker_image: pytorch/manylinux-cuda111
1964
1965
1966
1967
1968
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1969
1970
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1971
          name: nightly_binary_linux_wheel_py3.9_cu111_upload
1972
          requires:
1973
1974
          - nightly_binary_linux_wheel_py3.9_cu111
          subfolder: cu111/
1975
      - smoke_test_linux_pip:
guyang3532's avatar
guyang3532 committed
1976
1977
1978
1979
          filters:
            branches:
              only:
              - nightly
1980
          name: nightly_binary_linux_wheel_py3.9_cu111_smoke_test_pip
1981
          python_version: '3.9'
guyang3532's avatar
guyang3532 committed
1982
          requires:
1983
          - nightly_binary_linux_wheel_py3.9_cu111_upload
1984
1985
1986
      - binary_macos_wheel:
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
1987
1988
1989
          filters:
            branches:
              only: nightly
1990
1991
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1992
          name: nightly_binary_macos_wheel_py3.6_cpu
1993
          python_version: '3.6'
1994
          wheel_docker_image: pytorch/manylinux-cuda102
1995
1996
1997
1998
1999
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2000
2001
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2002
          name: nightly_binary_macos_wheel_py3.6_cpu_upload
2003
          requires:
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
          - nightly_binary_macos_wheel_py3.6_cpu
          subfolder: ''
      - binary_macos_wheel:
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_macos_wheel_py3.7_cpu
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda102
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_macos_wheel_py3.7_cpu_upload
          requires:
          - nightly_binary_macos_wheel_py3.7_cpu
          subfolder: ''
      - binary_macos_wheel:
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda102
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_macos_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_macos_wheel_py3.8_cpu
          subfolder: ''
      - binary_macos_wheel:
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_macos_wheel_py3.9_cpu
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_macos_wheel_py3.9_cpu_upload
          requires:
          - nightly_binary_macos_wheel_py3.9_cpu
          subfolder: ''
      - binary_win_wheel:
          cu_version: cpu
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.6_cpu
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.6_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cpu
          subfolder: cpu/
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.6_cpu_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_win_wheel_py3.6_cpu_upload
      - binary_win_wheel:
          cu_version: cu101
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.6_cu101
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.6_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu101
          subfolder: cu101/
      - smoke_test_win_pip:
guyang3532's avatar
guyang3532 committed
2122
2123
2124
2125
2126
2127
2128
2129
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.6_cu101_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_win_wheel_py3.6_cu101_upload
2130
      - binary_win_wheel:
2131
          cu_version: cu102
2132
2133
2134
          filters:
            branches:
              only: nightly
2135
2136
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2137
2138
2139
2140
2141
2142
2143
          name: nightly_binary_win_wheel_py3.6_cu102
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2144
2145
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2146
2147
2148
2149
          name: nightly_binary_win_wheel_py3.6_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
2150
2151
2152
2153
2154
2155
2156
2157
2158
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.6_cu102_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_win_wheel_py3.6_cu102_upload
peterjc123's avatar
peterjc123 committed
2159
      - binary_win_wheel:
2160
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
2161
2162
2163
2164
2165
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2166
          name: nightly_binary_win_wheel_py3.6_cu111
peterjc123's avatar
peterjc123 committed
2167
2168
2169
2170
2171
2172
2173
2174
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2175
          name: nightly_binary_win_wheel_py3.6_cu111_upload
peterjc123's avatar
peterjc123 committed
2176
          requires:
2177
2178
          - nightly_binary_win_wheel_py3.6_cu111
          subfolder: cu111/
peterjc123's avatar
peterjc123 committed
2179
2180
2181
2182
2183
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
2184
          name: nightly_binary_win_wheel_py3.6_cu111_smoke_test_pip
peterjc123's avatar
peterjc123 committed
2185
2186
          python_version: '3.6'
          requires:
2187
          - nightly_binary_win_wheel_py3.6_cu111_upload
2188
      - binary_win_wheel:
2189
2190
2191
2192
          cu_version: cpu
          filters:
            branches:
              only: nightly
2193
2194
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2195
2196
2197
2198
2199
2200
2201
          name: nightly_binary_win_wheel_py3.7_cpu
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2202
2203
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2204
2205
2206
2207
          name: nightly_binary_win_wheel_py3.7_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
2208
2209
2210
2211
2212
2213
2214
2215
2216
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.7_cpu_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_win_wheel_py3.7_cpu_upload
2217
      - binary_win_wheel:
2218
          cu_version: cu101
2219
2220
2221
          filters:
            branches:
              only: nightly
2222
2223
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2224
2225
2226
2227
2228
2229
2230
          name: nightly_binary_win_wheel_py3.7_cu101
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2231
2232
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2233
2234
2235
2236
          name: nightly_binary_win_wheel_py3.7_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
2237
2238
2239
2240
2241
2242
2243
2244
2245
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.7_cu101_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_win_wheel_py3.7_cu101_upload
2246
      - binary_win_wheel:
2247
          cu_version: cu102
2248
2249
2250
          filters:
            branches:
              only: nightly
2251
2252
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2253
2254
2255
2256
2257
2258
2259
          name: nightly_binary_win_wheel_py3.7_cu102
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2260
2261
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2262
2263
2264
2265
          name: nightly_binary_win_wheel_py3.7_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
2266
2267
2268
2269
2270
2271
2272
2273
2274
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.7_cu102_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_win_wheel_py3.7_cu102_upload
peterjc123's avatar
peterjc123 committed
2275
      - binary_win_wheel:
2276
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
2277
2278
2279
2280
2281
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2282
          name: nightly_binary_win_wheel_py3.7_cu111
peterjc123's avatar
peterjc123 committed
2283
2284
2285
2286
2287
2288
2289
2290
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2291
          name: nightly_binary_win_wheel_py3.7_cu111_upload
peterjc123's avatar
peterjc123 committed
2292
          requires:
2293
2294
          - nightly_binary_win_wheel_py3.7_cu111
          subfolder: cu111/
peterjc123's avatar
peterjc123 committed
2295
2296
2297
2298
2299
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
2300
          name: nightly_binary_win_wheel_py3.7_cu111_smoke_test_pip
peterjc123's avatar
peterjc123 committed
2301
2302
          python_version: '3.7'
          requires:
2303
          - nightly_binary_win_wheel_py3.7_cu111_upload
2304
      - binary_win_wheel:
2305
2306
2307
2308
          cu_version: cpu
          filters:
            branches:
              only: nightly
2309
2310
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2311
2312
2313
2314
2315
2316
2317
          name: nightly_binary_win_wheel_py3.8_cpu
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2318
2319
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2320
2321
2322
2323
          name: nightly_binary_win_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
2324
2325
2326
2327
2328
2329
2330
2331
2332
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.8_cpu_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_win_wheel_py3.8_cpu_upload
2333
      - binary_win_wheel:
2334
          cu_version: cu101
2335
2336
2337
          filters:
            branches:
              only: nightly
2338
2339
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2340
2341
2342
2343
2344
2345
2346
          name: nightly_binary_win_wheel_py3.8_cu101
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2347
2348
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2349
2350
2351
2352
          name: nightly_binary_win_wheel_py3.8_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
2353
2354
2355
2356
2357
2358
2359
2360
2361
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.8_cu101_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_win_wheel_py3.8_cu101_upload
2362
      - binary_win_wheel:
2363
          cu_version: cu102
2364
2365
2366
          filters:
            branches:
              only: nightly
2367
2368
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2369
2370
2371
2372
2373
2374
2375
          name: nightly_binary_win_wheel_py3.8_cu102
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2376
2377
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2378
2379
2380
2381
          name: nightly_binary_win_wheel_py3.8_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
2382
2383
2384
2385
2386
2387
2388
2389
2390
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.8_cu102_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_win_wheel_py3.8_cu102_upload
peterjc123's avatar
peterjc123 committed
2391
      - binary_win_wheel:
2392
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
2393
2394
2395
2396
2397
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2398
          name: nightly_binary_win_wheel_py3.8_cu111
peterjc123's avatar
peterjc123 committed
2399
2400
2401
2402
2403
2404
2405
2406
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2407
          name: nightly_binary_win_wheel_py3.8_cu111_upload
peterjc123's avatar
peterjc123 committed
2408
          requires:
2409
2410
          - nightly_binary_win_wheel_py3.8_cu111
          subfolder: cu111/
peterjc123's avatar
peterjc123 committed
2411
2412
2413
2414
2415
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
2416
          name: nightly_binary_win_wheel_py3.8_cu111_smoke_test_pip
peterjc123's avatar
peterjc123 committed
2417
2418
          python_version: '3.8'
          requires:
2419
          - nightly_binary_win_wheel_py3.8_cu111_upload
2420
      - binary_win_wheel:
2421
          cu_version: cpu
2422
2423
2424
          filters:
            branches:
              only: nightly
2425
2426
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2427
2428
2429
          name: nightly_binary_win_wheel_py3.9_cpu
          python_version: '3.9'
      - binary_wheel_upload:
Edward Z. Yang's avatar
Edward Z. Yang committed
2430
          context: org-member
2431
2432
2433
          filters:
            branches:
              only: nightly
2434
2435
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2436
          name: nightly_binary_win_wheel_py3.9_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2437
          requires:
2438
2439
2440
          - nightly_binary_win_wheel_py3.9_cpu
          subfolder: cpu/
      - smoke_test_win_pip:
guyang3532's avatar
guyang3532 committed
2441
2442
2443
2444
          filters:
            branches:
              only:
              - nightly
2445
2446
          name: nightly_binary_win_wheel_py3.9_cpu_smoke_test_pip
          python_version: '3.9'
guyang3532's avatar
guyang3532 committed
2447
          requires:
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
          - nightly_binary_win_wheel_py3.9_cpu_upload
      - binary_win_wheel:
          cu_version: cu101
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.9_cu101
          python_version: '3.9'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.9_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.9_cu101
          subfolder: cu101/
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.9_cu101_smoke_test_pip
          python_version: '3.9'
          requires:
          - nightly_binary_win_wheel_py3.9_cu101_upload
      - binary_win_wheel:
          cu_version: cu102
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.9_cu102
          python_version: '3.9'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.9_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.9_cu102
          subfolder: cu102/
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.9_cu102_smoke_test_pip
          python_version: '3.9'
          requires:
          - nightly_binary_win_wheel_py3.9_cu102_upload
      - binary_win_wheel:
2508
          cu_version: cu111
2509
2510
2511
2512
2513
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2514
          name: nightly_binary_win_wheel_py3.9_cu111
2515
2516
2517
2518
2519
2520
2521
2522
          python_version: '3.9'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2523
          name: nightly_binary_win_wheel_py3.9_cu111_upload
2524
          requires:
2525
2526
          - nightly_binary_win_wheel_py3.9_cu111
          subfolder: cu111/
2527
2528
2529
2530
2531
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
2532
          name: nightly_binary_win_wheel_py3.9_cu111_smoke_test_pip
2533
2534
          python_version: '3.9'
          requires:
2535
          - nightly_binary_win_wheel_py3.9_cu111_upload
2536
      - binary_linux_conda:
2537
2538
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
2539
2540
2541
          filters:
            branches:
              only: nightly
2542
2543
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2544
          name: nightly_binary_linux_conda_py3.6_cpu
2545
          python_version: '3.6'
2546
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
2547
2548
      - binary_conda_upload:
          context: org-member
2549
2550
2551
          filters:
            branches:
              only: nightly
2552
2553
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2554
          name: nightly_binary_linux_conda_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2555
          requires:
2556
          - nightly_binary_linux_conda_py3.6_cpu
guyang3532's avatar
guyang3532 committed
2557
2558
2559
2560
2561
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
2562
          name: nightly_binary_linux_conda_py3.6_cpu_smoke_test_conda
guyang3532's avatar
guyang3532 committed
2563
2564
          python_version: '3.6'
          requires:
2565
          - nightly_binary_linux_conda_py3.6_cpu_upload
2566
      - binary_linux_conda:
2567
          conda_docker_image: pytorch/conda-builder:cuda101
2568
          cu_version: cu101
2569
2570
2571
          filters:
            branches:
              only: nightly
2572
2573
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2574
          name: nightly_binary_linux_conda_py3.6_cu101
2575
          python_version: '3.6'
2576
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
2577
2578
      - binary_conda_upload:
          context: org-member
2579
2580
2581
          filters:
            branches:
              only: nightly
2582
2583
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2584
          name: nightly_binary_linux_conda_py3.6_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2585
          requires:
2586
          - nightly_binary_linux_conda_py3.6_cu101
guyang3532's avatar
guyang3532 committed
2587
2588
2589
2590
2591
2592
2593
2594
2595
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.6_cu101_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_linux_conda_py3.6_cu101_upload
Francisco Massa's avatar
Francisco Massa committed
2596
      - binary_linux_conda:
2597
          conda_docker_image: pytorch/conda-builder:cuda102
2598
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
2599
2600
2601
          filters:
            branches:
              only: nightly
2602
2603
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2604
          name: nightly_binary_linux_conda_py3.6_cu102
Francisco Massa's avatar
Francisco Massa committed
2605
          python_version: '3.6'
2606
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
2607
2608
2609
2610
2611
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2612
2613
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2614
          name: nightly_binary_linux_conda_py3.6_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
2615
          requires:
2616
          - nightly_binary_linux_conda_py3.6_cu102
guyang3532's avatar
guyang3532 committed
2617
2618
2619
2620
2621
2622
2623
2624
2625
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.6_cu102_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_linux_conda_py3.6_cu102_upload
peterjc123's avatar
peterjc123 committed
2626
      - binary_linux_conda:
2627
2628
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
2629
2630
2631
2632
2633
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2634
          name: nightly_binary_linux_conda_py3.6_cu111
peterjc123's avatar
peterjc123 committed
2635
          python_version: '3.6'
2636
          wheel_docker_image: pytorch/manylinux-cuda111
peterjc123's avatar
peterjc123 committed
2637
2638
2639
2640
2641
2642
2643
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2644
          name: nightly_binary_linux_conda_py3.6_cu111_upload
peterjc123's avatar
peterjc123 committed
2645
          requires:
2646
          - nightly_binary_linux_conda_py3.6_cu111
peterjc123's avatar
peterjc123 committed
2647
2648
2649
2650
2651
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
2652
          name: nightly_binary_linux_conda_py3.6_cu111_smoke_test_conda
peterjc123's avatar
peterjc123 committed
2653
2654
          python_version: '3.6'
          requires:
2655
          - nightly_binary_linux_conda_py3.6_cu111_upload
2656
      - binary_linux_conda:
2657
          conda_docker_image: pytorch/conda-builder:cpu
2658
          cu_version: cpu
2659
2660
2661
          filters:
            branches:
              only: nightly
2662
2663
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
2664
          name: nightly_binary_linux_conda_py3.7_cpu
2665
          python_version: '3.7'
2666
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
2667
2668
      - binary_conda_upload:
          context: org-member
2669
2670
2671
          filters:
            branches:
              only: nightly
2672
2673
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2674
          name: nightly_binary_linux_conda_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2675
          requires:
2676
          - nightly_binary_linux_conda_py3.7_cpu
guyang3532's avatar
guyang3532 committed
2677
2678
2679
2680
2681
2682
2683
2684
2685
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.7_cpu_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_linux_conda_py3.7_cpu_upload
2686
      - binary_linux_conda:
2687
          conda_docker_image: pytorch/conda-builder:cuda101
2688
          cu_version: cu101
2689
2690
2691
          filters:
            branches:
              only: nightly
2692
2693
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2694
          name: nightly_binary_linux_conda_py3.7_cu101
2695
          python_version: '3.7'
2696
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
2697
2698
      - binary_conda_upload:
          context: org-member
2699
2700
2701
          filters:
            branches:
              only: nightly
2702
2703
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2704
          name: nightly_binary_linux_conda_py3.7_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2705
          requires:
2706
          - nightly_binary_linux_conda_py3.7_cu101
guyang3532's avatar
guyang3532 committed
2707
2708
2709
2710
2711
2712
2713
2714
2715
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.7_cu101_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_linux_conda_py3.7_cu101_upload
Francisco Massa's avatar
Francisco Massa committed
2716
      - binary_linux_conda:
2717
          conda_docker_image: pytorch/conda-builder:cuda102
2718
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
2719
2720
2721
          filters:
            branches:
              only: nightly
2722
2723
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2724
          name: nightly_binary_linux_conda_py3.7_cu102
Francisco Massa's avatar
Francisco Massa committed
2725
          python_version: '3.7'
2726
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
2727
2728
2729
2730
2731
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2732
2733
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2734
          name: nightly_binary_linux_conda_py3.7_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
2735
          requires:
2736
          - nightly_binary_linux_conda_py3.7_cu102
guyang3532's avatar
guyang3532 committed
2737
2738
2739
2740
2741
2742
2743
2744
2745
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.7_cu102_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_linux_conda_py3.7_cu102_upload
peterjc123's avatar
peterjc123 committed
2746
      - binary_linux_conda:
2747
2748
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
2749
2750
2751
2752
2753
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2754
          name: nightly_binary_linux_conda_py3.7_cu111
peterjc123's avatar
peterjc123 committed
2755
          python_version: '3.7'
2756
          wheel_docker_image: pytorch/manylinux-cuda111
peterjc123's avatar
peterjc123 committed
2757
2758
2759
2760
2761
2762
2763
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2764
          name: nightly_binary_linux_conda_py3.7_cu111_upload
peterjc123's avatar
peterjc123 committed
2765
          requires:
2766
          - nightly_binary_linux_conda_py3.7_cu111
peterjc123's avatar
peterjc123 committed
2767
2768
2769
2770
2771
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
2772
          name: nightly_binary_linux_conda_py3.7_cu111_smoke_test_conda
peterjc123's avatar
peterjc123 committed
2773
2774
          python_version: '3.7'
          requires:
2775
          - nightly_binary_linux_conda_py3.7_cu111_upload
2776
      - binary_linux_conda:
2777
          conda_docker_image: pytorch/conda-builder:cpu
2778
2779
2780
2781
          cu_version: cpu
          filters:
            branches:
              only: nightly
2782
2783
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2784
2785
          name: nightly_binary_linux_conda_py3.8_cpu
          python_version: '3.8'
2786
          wheel_docker_image: pytorch/manylinux-cuda102
2787
2788
2789
2790
2791
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2792
2793
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2794
2795
2796
          name: nightly_binary_linux_conda_py3.8_cpu_upload
          requires:
          - nightly_binary_linux_conda_py3.8_cpu
guyang3532's avatar
guyang3532 committed
2797
2798
2799
2800
2801
2802
2803
2804
2805
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.8_cpu_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_linux_conda_py3.8_cpu_upload
2806
      - binary_linux_conda:
2807
2808
          conda_docker_image: pytorch/conda-builder:cuda101
          cu_version: cu101
2809
2810
2811
          filters:
            branches:
              only: nightly
2812
2813
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2814
          name: nightly_binary_linux_conda_py3.8_cu101
2815
          python_version: '3.8'
2816
          wheel_docker_image: pytorch/manylinux-cuda101
2817
2818
2819
2820
2821
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2822
2823
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2824
          name: nightly_binary_linux_conda_py3.8_cu101_upload
2825
          requires:
2826
          - nightly_binary_linux_conda_py3.8_cu101
guyang3532's avatar
guyang3532 committed
2827
2828
2829
2830
2831
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
2832
          name: nightly_binary_linux_conda_py3.8_cu101_smoke_test_conda
guyang3532's avatar
guyang3532 committed
2833
2834
          python_version: '3.8'
          requires:
2835
          - nightly_binary_linux_conda_py3.8_cu101_upload
2836
      - binary_linux_conda:
2837
2838
          conda_docker_image: pytorch/conda-builder:cuda102
          cu_version: cu102
2839
2840
2841
          filters:
            branches:
              only: nightly
2842
2843
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2844
          name: nightly_binary_linux_conda_py3.8_cu102
2845
          python_version: '3.8'
2846
          wheel_docker_image: pytorch/manylinux-cuda102
2847
2848
2849
2850
2851
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2852
2853
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2854
          name: nightly_binary_linux_conda_py3.8_cu102_upload
2855
          requires:
2856
          - nightly_binary_linux_conda_py3.8_cu102
guyang3532's avatar
guyang3532 committed
2857
2858
2859
2860
2861
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
2862
          name: nightly_binary_linux_conda_py3.8_cu102_smoke_test_conda
guyang3532's avatar
guyang3532 committed
2863
2864
          python_version: '3.8'
          requires:
2865
          - nightly_binary_linux_conda_py3.8_cu102_upload
2866
      - binary_linux_conda:
2867
2868
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
2869
2870
2871
          filters:
            branches:
              only: nightly
2872
2873
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2874
          name: nightly_binary_linux_conda_py3.8_cu111
2875
          python_version: '3.8'
2876
          wheel_docker_image: pytorch/manylinux-cuda111
2877
2878
2879
2880
2881
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2882
2883
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2884
          name: nightly_binary_linux_conda_py3.8_cu111_upload
2885
          requires:
2886
          - nightly_binary_linux_conda_py3.8_cu111
guyang3532's avatar
guyang3532 committed
2887
2888
2889
2890
2891
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
2892
          name: nightly_binary_linux_conda_py3.8_cu111_smoke_test_conda
guyang3532's avatar
guyang3532 committed
2893
2894
          python_version: '3.8'
          requires:
2895
          - nightly_binary_linux_conda_py3.8_cu111_upload
peterjc123's avatar
peterjc123 committed
2896
      - binary_linux_conda:
2897
2898
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
peterjc123's avatar
peterjc123 committed
2899
2900
2901
2902
2903
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2904
2905
2906
          name: nightly_binary_linux_conda_py3.9_cpu
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
peterjc123's avatar
peterjc123 committed
2907
2908
2909
2910
2911
2912
2913
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2914
          name: nightly_binary_linux_conda_py3.9_cpu_upload
peterjc123's avatar
peterjc123 committed
2915
          requires:
2916
          - nightly_binary_linux_conda_py3.9_cpu
peterjc123's avatar
peterjc123 committed
2917
2918
2919
2920
2921
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
          name: nightly_binary_linux_conda_py3.9_cpu_smoke_test_conda
          python_version: '3.9'
          requires:
          - nightly_binary_linux_conda_py3.9_cpu_upload
      - binary_linux_conda:
          conda_docker_image: pytorch/conda-builder:cuda101
          cu_version: cu101
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.9_cu101
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.9_cu101_upload
          requires:
          - nightly_binary_linux_conda_py3.9_cu101
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.9_cu101_smoke_test_conda
          python_version: '3.9'
          requires:
          - nightly_binary_linux_conda_py3.9_cu101_upload
      - binary_linux_conda:
          conda_docker_image: pytorch/conda-builder:cuda102
          cu_version: cu102
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.9_cu102
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.9_cu102_upload
          requires:
          - nightly_binary_linux_conda_py3.9_cu102
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.9_cu102_smoke_test_conda
          python_version: '3.9'
          requires:
          - nightly_binary_linux_conda_py3.9_cu102_upload
      - binary_linux_conda:
2987
2988
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
2989
2990
2991
2992
2993
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2994
          name: nightly_binary_linux_conda_py3.9_cu111
2995
          python_version: '3.9'
2996
          wheel_docker_image: pytorch/manylinux-cuda111
2997
2998
2999
3000
3001
3002
3003
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3004
          name: nightly_binary_linux_conda_py3.9_cu111_upload
peterjc123's avatar
peterjc123 committed
3005
          requires:
3006
          - nightly_binary_linux_conda_py3.9_cu111
3007
3008
3009
3010
3011
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
3012
          name: nightly_binary_linux_conda_py3.9_cu111_smoke_test_conda
3013
3014
          python_version: '3.9'
          requires:
3015
          - nightly_binary_linux_conda_py3.9_cu111_upload
3016
      - binary_macos_conda:
3017
          conda_docker_image: pytorch/conda-builder:cpu
3018
          cu_version: cpu
3019
3020
3021
          filters:
            branches:
              only: nightly
3022
3023
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
3024
          name: nightly_binary_macos_conda_py3.6_cpu
3025
          python_version: '3.6'
3026
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
3027
3028
      - binary_conda_upload:
          context: org-member
3029
3030
3031
          filters:
            branches:
              only: nightly
3032
3033
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3034
          name: nightly_binary_macos_conda_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
3035
          requires:
3036
          - nightly_binary_macos_conda_py3.6_cpu
3037
      - binary_macos_conda:
3038
          conda_docker_image: pytorch/conda-builder:cpu
3039
          cu_version: cpu
3040
3041
3042
          filters:
            branches:
              only: nightly
3043
3044
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
3045
          name: nightly_binary_macos_conda_py3.7_cpu
3046
          python_version: '3.7'
3047
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
3048
3049
      - binary_conda_upload:
          context: org-member
3050
3051
3052
          filters:
            branches:
              only: nightly
3053
3054
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3055
          name: nightly_binary_macos_conda_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
3056
          requires:
3057
3058
          - nightly_binary_macos_conda_py3.7_cpu
      - binary_macos_conda:
3059
          conda_docker_image: pytorch/conda-builder:cpu
3060
3061
3062
3063
          cu_version: cpu
          filters:
            branches:
              only: nightly
3064
3065
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3066
3067
          name: nightly_binary_macos_conda_py3.8_cpu
          python_version: '3.8'
3068
          wheel_docker_image: pytorch/manylinux-cuda102
3069
3070
3071
3072
3073
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3074
3075
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3076
3077
          name: nightly_binary_macos_conda_py3.8_cpu_upload
          requires:
3078
          - nightly_binary_macos_conda_py3.8_cpu
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
      - binary_macos_conda:
          conda_docker_image: pytorch/conda-builder:cpu
          cu_version: cpu
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_macos_conda_py3.9_cpu
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-cuda102
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_macos_conda_py3.9_cpu_upload
          requires:
          - nightly_binary_macos_conda_py3.9_cpu
3100
      - binary_win_conda:
3101
3102
3103
3104
          cu_version: cpu
          filters:
            branches:
              only: nightly
3105
3106
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3107
3108
3109
3110
3111
3112
3113
          name: nightly_binary_win_conda_py3.6_cpu
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3114
3115
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3116
3117
3118
          name: nightly_binary_win_conda_py3.6_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.6_cpu
guyang3532's avatar
guyang3532 committed
3119
3120
3121
3122
3123
3124
3125
3126
3127
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.6_cpu_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_win_conda_py3.6_cpu_upload
3128
      - binary_win_conda:
3129
          cu_version: cu101
3130
3131
3132
          filters:
            branches:
              only: nightly
3133
3134
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3135
3136
3137
3138
3139
3140
3141
          name: nightly_binary_win_conda_py3.6_cu101
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3142
3143
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3144
3145
3146
          name: nightly_binary_win_conda_py3.6_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu101
guyang3532's avatar
guyang3532 committed
3147
3148
3149
3150
3151
3152
3153
3154
3155
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.6_cu101_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_win_conda_py3.6_cu101_upload
3156
      - binary_win_conda:
3157
          cu_version: cu102
3158
3159
3160
          filters:
            branches:
              only: nightly
3161
3162
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3163
3164
3165
3166
3167
3168
3169
          name: nightly_binary_win_conda_py3.6_cu102
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3170
3171
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3172
3173
3174
          name: nightly_binary_win_conda_py3.6_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu102
guyang3532's avatar
guyang3532 committed
3175
3176
3177
3178
3179
3180
3181
3182
3183
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.6_cu102_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_win_conda_py3.6_cu102_upload
peterjc123's avatar
peterjc123 committed
3184
      - binary_win_conda:
3185
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
3186
3187
3188
3189
3190
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3191
          name: nightly_binary_win_conda_py3.6_cu111
peterjc123's avatar
peterjc123 committed
3192
3193
3194
3195
3196
3197
3198
3199
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3200
          name: nightly_binary_win_conda_py3.6_cu111_upload
peterjc123's avatar
peterjc123 committed
3201
          requires:
3202
          - nightly_binary_win_conda_py3.6_cu111
peterjc123's avatar
peterjc123 committed
3203
3204
3205
3206
3207
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
3208
          name: nightly_binary_win_conda_py3.6_cu111_smoke_test_conda
peterjc123's avatar
peterjc123 committed
3209
3210
          python_version: '3.6'
          requires:
3211
          - nightly_binary_win_conda_py3.6_cu111_upload
3212
      - binary_win_conda:
3213
3214
3215
3216
          cu_version: cpu
          filters:
            branches:
              only: nightly
3217
3218
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3219
3220
3221
3222
3223
3224
3225
          name: nightly_binary_win_conda_py3.7_cpu
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3226
3227
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3228
3229
3230
          name: nightly_binary_win_conda_py3.7_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.7_cpu
guyang3532's avatar
guyang3532 committed
3231
3232
3233
3234
3235
3236
3237
3238
3239
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.7_cpu_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_win_conda_py3.7_cpu_upload
3240
      - binary_win_conda:
3241
          cu_version: cu101
3242
3243
3244
          filters:
            branches:
              only: nightly
3245
3246
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3247
3248
3249
3250
3251
3252
3253
          name: nightly_binary_win_conda_py3.7_cu101
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3254
3255
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3256
3257
3258
          name: nightly_binary_win_conda_py3.7_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu101
guyang3532's avatar
guyang3532 committed
3259
3260
3261
3262
3263
3264
3265
3266
3267
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.7_cu101_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_win_conda_py3.7_cu101_upload
3268
      - binary_win_conda:
3269
          cu_version: cu102
3270
3271
3272
          filters:
            branches:
              only: nightly
3273
3274
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3275
3276
3277
3278
3279
3280
3281
          name: nightly_binary_win_conda_py3.7_cu102
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3282
3283
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3284
3285
3286
          name: nightly_binary_win_conda_py3.7_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu102
guyang3532's avatar
guyang3532 committed
3287
3288
3289
3290
3291
3292
3293
3294
3295
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.7_cu102_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_win_conda_py3.7_cu102_upload
peterjc123's avatar
peterjc123 committed
3296
      - binary_win_conda:
3297
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
3298
3299
3300
3301
3302
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3303
          name: nightly_binary_win_conda_py3.7_cu111
peterjc123's avatar
peterjc123 committed
3304
3305
3306
3307
3308
3309
3310
3311
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3312
          name: nightly_binary_win_conda_py3.7_cu111_upload
peterjc123's avatar
peterjc123 committed
3313
          requires:
3314
          - nightly_binary_win_conda_py3.7_cu111
peterjc123's avatar
peterjc123 committed
3315
3316
3317
3318
3319
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
3320
          name: nightly_binary_win_conda_py3.7_cu111_smoke_test_conda
peterjc123's avatar
peterjc123 committed
3321
3322
          python_version: '3.7'
          requires:
3323
          - nightly_binary_win_conda_py3.7_cu111_upload
3324
      - binary_win_conda:
3325
3326
3327
3328
          cu_version: cpu
          filters:
            branches:
              only: nightly
3329
3330
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3331
3332
3333
3334
3335
3336
3337
          name: nightly_binary_win_conda_py3.8_cpu
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3338
3339
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3340
3341
3342
          name: nightly_binary_win_conda_py3.8_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.8_cpu
guyang3532's avatar
guyang3532 committed
3343
3344
3345
3346
3347
3348
3349
3350
3351
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.8_cpu_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_win_conda_py3.8_cpu_upload
3352
      - binary_win_conda:
3353
          cu_version: cu101
3354
3355
3356
          filters:
            branches:
              only: nightly
3357
3358
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3359
3360
3361
3362
3363
3364
3365
          name: nightly_binary_win_conda_py3.8_cu101
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3366
3367
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3368
3369
3370
          name: nightly_binary_win_conda_py3.8_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.8_cu101
guyang3532's avatar
guyang3532 committed
3371
3372
3373
3374
3375
3376
3377
3378
3379
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.8_cu101_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_win_conda_py3.8_cu101_upload
3380
      - binary_win_conda:
3381
          cu_version: cu102
3382
3383
3384
          filters:
            branches:
              only: nightly
3385
3386
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3387
3388
3389
3390
3391
3392
3393
          name: nightly_binary_win_conda_py3.8_cu102
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
3394
3395
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3396
3397
          name: nightly_binary_win_conda_py3.8_cu102_upload
          requires:
guyang3532's avatar
guyang3532 committed
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
          - nightly_binary_win_conda_py3.8_cu102
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.8_cu102_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_win_conda_py3.8_cu102_upload
peterjc123's avatar
peterjc123 committed
3408
      - binary_win_conda:
3409
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
3410
3411
3412
3413
3414
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3415
          name: nightly_binary_win_conda_py3.8_cu111
peterjc123's avatar
peterjc123 committed
3416
3417
3418
3419
3420
3421
3422
3423
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3424
          name: nightly_binary_win_conda_py3.8_cu111_upload
peterjc123's avatar
peterjc123 committed
3425
          requires:
3426
          - nightly_binary_win_conda_py3.8_cu111
peterjc123's avatar
peterjc123 committed
3427
3428
3429
3430
3431
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
3432
          name: nightly_binary_win_conda_py3.8_cu111_smoke_test_conda
peterjc123's avatar
peterjc123 committed
3433
3434
          python_version: '3.8'
          requires:
3435
          - nightly_binary_win_conda_py3.8_cu111_upload
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
      - binary_win_conda:
          cu_version: cpu
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.9_cpu
          python_version: '3.9'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.9_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.9_cpu
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.9_cpu_smoke_test_conda
          python_version: '3.9'
          requires:
          - nightly_binary_win_conda_py3.9_cpu_upload
      - binary_win_conda:
          cu_version: cu101
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.9_cu101
          python_version: '3.9'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.9_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.9_cu101
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.9_cu101_smoke_test_conda
          python_version: '3.9'
          requires:
          - nightly_binary_win_conda_py3.9_cu101_upload
      - binary_win_conda:
          cu_version: cu102
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.9_cu102
          python_version: '3.9'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.9_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.9_cu102
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.9_cu102_smoke_test_conda
          python_version: '3.9'
          requires:
          - nightly_binary_win_conda_py3.9_cu102_upload
      - binary_win_conda:
3521
          cu_version: cu111
3522
3523
3524
3525
3526
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3527
          name: nightly_binary_win_conda_py3.9_cu111
3528
3529
3530
3531
3532
3533
3534
3535
          python_version: '3.9'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
3536
          name: nightly_binary_win_conda_py3.9_cu111_upload
3537
          requires:
3538
          - nightly_binary_win_conda_py3.9_cu111
3539
3540
3541
3542
3543
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
3544
          name: nightly_binary_win_conda_py3.9_cu111_smoke_test_conda
3545
3546
          python_version: '3.9'
          requires:
3547
          - nightly_binary_win_conda_py3.9_cu111_upload
guyang3532's avatar
guyang3532 committed
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
  docker_build:
    triggers:
      - schedule:
          cron: "0 10 * * 0"
          filters:
            branches:
              only:
                - master
    jobs:
      - smoke_test_docker_image_build:
3558
          context: org-member