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
            pip install --user --progress-bar off mypy
123
            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
  torchhub_test:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            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

161
162
163
164
165
166
167
168
169
170
171
  torch_onnx_test:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            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
172
            pip install --user onnxruntime
173
174
            python test/test_onnx.py

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

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

Francisco Massa's avatar
Francisco Massa committed
209
  binary_win_conda:
210
211
    <<: *binary_common
    executor: windows-cpu
212
213
    steps:
      - checkout_merge
214
      - designate_upload_channel
215
216
      - run:
          name: Build conda packages
217
          no_output_timeout: 20m
218
          command: |
219
220
221
222
223
224
225
            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
226
            rm /C/tools/miniconda3/conda-bld/win-64/vs${VC_YEAR}*.tar.bz2
227
      - store_artifacts:
228
          path: C:/tools/miniconda3/conda-bld/win-64
229
      - persist_to_workspace:
230
          root: C:/tools/miniconda3/conda-bld/win-64
231
232
233
234
235
          paths:
            - "*"
      - store_test_results:
          path: build_results/

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

258
259
260
  binary_macos_wheel:
    <<: *binary_common
    macos:
261
      xcode: "9.4.1"
262
    steps:
263
      - checkout_merge
264
      - designate_upload_channel
265
266
267
268
269
270
271
272
273
274
275
      - 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
276
277
278
279
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
280
281
282
283

  binary_macos_conda:
    <<: *binary_common
    macos:
284
      xcode: "9.4.1"
285
    steps:
286
      - checkout_merge
287
      - designate_upload_channel
288
289
290
291
292
293
294
295
296
      - 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
297
298
299
300
      - persist_to_workspace:
          root: /Users/distiller/miniconda3/conda-bld/osx-64
          paths:
            - "*"
301
302
      - store_test_results:
          path: build_results/
Edward Z. Yang's avatar
Edward Z. Yang committed
303
304
305
306
307
308
309
310

  # Requires org-member context
  binary_conda_upload:
    docker:
      - image: continuumio/miniconda
    steps:
      - attach_workspace:
          at: ~/workspace
311
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
312
313
314
315
316
      - run:
          command: |
            # Prevent credential from leaking
            conda install -yq anaconda-client
            set -x
317
            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
318
319
320

  # Requires org-member context
  binary_wheel_upload:
Edward Z. Yang's avatar
Edward Z. Yang committed
321
322
323
324
    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
325
326
327
328
329
    docker:
      - image: circleci/python:3.7
    steps:
      - attach_workspace:
          at: ~/workspace
330
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
331
332
333
334
335
336
337
338
339
340
      - 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
341
            for pkg in ~/workspace/*.whl; do
342
              aws s3 cp "$pkg" "s3://pytorch/whl/${UPLOAD_CHANNEL}/<< parameters.subfolder >>" --acl public-read
Edward Z. Yang's avatar
Edward Z. Yang committed
343
            done
344

guyang3532's avatar
guyang3532 committed
345
346
347
348
349
  smoke_test_linux_conda:
    <<: *smoke_test_common
    steps:
      - attach_workspace:
          at: ~/workspace
350
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
      - 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
369
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
      - 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
390
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
      - 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
410
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
411
412
413
414
415
416
      - 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
417
418
419
420
421
            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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
            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
440
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
441
442
443
444
445
      - run:
          name: install binaries
          command: |
            set -x
            eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
446
447
448
449
450
            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
451
452
453
454
455
456
457
458
459
460
            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"

461
462
463
464
465
466
467
  unittest_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout
468
      - designate_upload_channel
469
470
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
      - 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"
507
      PYTHON_VERSION: << parameters.python_version >>
508
509
    steps:
      - checkout
510
      - designate_upload_channel
511
512
513
514
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
515
516
517
518
519
      - restore_cache:

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

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

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

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
532
          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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
      - 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
548
      - designate_upload_channel
549
550
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
      - 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"
586
      PYTHON_VERSION: << parameters.python_version >>
587
588
    steps:
      - checkout
589
      - designate_upload_channel
590
591
592
593
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
594
595
596
597
598
      - restore_cache:

          keys:
            - env-v1-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}
 
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
      - 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
620

Francisco Massa's avatar
Francisco Massa committed
621
622
623
624
625
626
627
  unittest_macos_cpu:
    <<: *binary_common
    macos:
      xcode: "9.4.1"
    resource_class: large
    steps:
      - checkout
628
      - designate_upload_channel
Francisco Massa's avatar
Francisco Massa committed
629
630
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
      - 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

664
665
666
667
668
669
670
  cmake_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout_merge
671
      - designate_upload_channel
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
      - 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
689
      - designate_upload_channel
690
691
692
693
694
      - 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
695
          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
696
697
698
699

  cmake_macos_cpu:
    <<: *binary_common
    macos:
700
      xcode: "9.4.1"
701
702
    steps:
      - checkout_merge
703
      - designate_upload_channel
704
705
706
707
708
709
710
711
712
713
714
715
716
717
      - 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
718
      - designate_upload_channel
719
720
721
722
723
724
725
726
727
728
729
730
      - 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
731
      - designate_upload_channel
732
733
734
735
736
737
738
      - run:
          command: |
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_cmake.sh

739
740
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
  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


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

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

  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'
1468
1469
1470
1471
      - cmake_windows_gpu:
          cu_version: cu101
          name: cmake_windows_gpu
          python_version: '3.8'
1472
1473
1474
1475
1476
      - cmake_macos_cpu:
          cu_version: cpu
          name: cmake_macos_cpu
          python_version: '3.8'

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