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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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
804
  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


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

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

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

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