config.yml 124 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
51
52
53
54
55
  install_cuda_compatible_cmath:
    description: "Install CUDA compatible cmath"
    steps:
      - run:
          name: _HACK_ Install CUDA compatible cmath
          no_output_timeout: 1m
          command: |
              powershell .circleci/scripts/vs_install_cmath.ps1
56

57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
  brew_update:
    description: "Update Homebrew and install base formulae"
    steps:
      - run:
          name: Update Homebrew
          no_output_timeout: "10m"
          command: |
            set -ex

            # Update repositories manually.
            # Running `brew update` produces a comparison between the
            # current checkout and the updated checkout, which takes a
            # very long time because the existing checkout is 2y old.
            for path in $(find /usr/local/Homebrew -type d -name .git)
            do
            cd $path/..
            git fetch --depth=1 origin
            git reset --hard origin/master
            done

            export HOMEBREW_NO_AUTO_UPDATE=1

            # Install expect and moreutils so that we can call `unbuffer` and `ts`.
            # moreutils installs a `parallel` executable by default, which conflicts
            # with the executable from the GNU `parallel`, so we must unlink GNU
            # `parallel` first, and relink it afterwards.
            brew install coreutils
            brew unlink parallel
            brew install moreutils
            brew link parallel --overwrite
            brew install expect

  brew_install:
    description: "Install Homebrew formulae"
    parameters:
      formulae:
        type: string
        default: ""
    steps:
      - run:
          name: Install << parameters.formulae >>
          no_output_timeout: "10m"
          command: |
            set -ex
            export HOMEBREW_NO_AUTO_UPDATE=1
            brew install << parameters.formulae >>

  run_brew_for_ios_build:
    steps:
      - brew_update
      - brew_install:
          formulae: libtool

110
111
binary_common: &binary_common
  parameters:
112
    # Edit these defaults to do a release
113
114
115
116
117
    build_version:
      description: "version number of release binary; by default, build a nightly"
      type: string
      default: ""
    pytorch_version:
118
      description: "PyTorch version to build against; by default, use a nightly"
119
      type: string
120
      default: ""
121
122
123
124
    # 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
125
126
    cu_version:
      description: "CUDA version to build against, in CU format (e.g., cpu or cu100)"
127
      type: string
guyang3532's avatar
guyang3532 committed
128
      default: "cpu"
129
130
131
132
    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
133
134
135
    wheel_docker_image:
      description: "Wheel only: what docker image to use"
      type: string
136
      default: "pytorch/manylinux-cuda101"
137
138
139
140
    conda_docker_image:
      description: "Conda only: what docker image to use"
      type: string
      default: "pytorch/conda-builder:cpu"
141
142
143
144
  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
145
    CU_VERSION: << parameters.cu_version >>
146

147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
torchvision_ios_params: &torchvision_ios_params
  parameters:
    build_environment:
      type: string
      default: ""
    ios_arch:
      type: string
      default: ""
    ios_platform:
      type: string
      default: ""
  environment:
    BUILD_ENVIRONMENT: << parameters.build_environment >>
    IOS_ARCH: << parameters.ios_arch >>
    IOS_PLATFORM: << parameters.ios_platform >>

guyang3532's avatar
guyang3532 committed
163
164
165
166
167
smoke_test_common: &smoke_test_common
  <<: *binary_common
  docker:
    - image: torchvision/smoke_test:latest

168
jobs:
169
170
171
172
173
174
175
  circleci_consistency:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
176
            pip install --user --progress-bar off jinja2 pyyaml
177
178
179
            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)

180
181
182
183
184
185
186
187
  python_lint:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user --progress-bar off flake8 typing
188
189
190
191
192
193
194
195
196
            flake8 --config=setup.cfg .

  python_type_check:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
197
198
            sudo apt-get update -y
            sudo apt install -y libturbojpeg-dev
199
            pip install --user --progress-bar off mypy
200
            pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
201
            pip install --user --progress-bar off --editable .
202
            mypy --config-file mypy.ini
203

204
205
206
207
208
209
210
211
212
213
  docstring_parameters_sync:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user pydocstyle
            pydocstyle

214
215
216
217
218
219
220
  clang_format:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
221
222
223
            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
224
            ./.circleci/unittest/linux/scripts/run-clang-format.py -r torchvision/csrc --clang-format-executable /opt/clang-format
225

Francisco Massa's avatar
Francisco Massa committed
226
227
228
229
230
231
232
233
234
235
236
237
  torchhub_test:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
            # need to install torchvision dependencies due to transitive imports
            pip install --user --progress-bar off --editable .
            python test/test_hub.py

238
239
240
241
242
243
244
245
246
247
248
  torch_onnx_test:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            pip install --user --progress-bar off --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
            # need to install torchvision dependencies due to transitive imports
            pip install --user --progress-bar off --editable .
            pip install --user onnx
249
            pip install --user onnxruntime
250
251
            python test/test_onnx.py

252
253
254
  binary_linux_wheel:
    <<: *binary_common
    docker:
Edward Z. Yang's avatar
Edward Z. Yang committed
255
      - image: << parameters.wheel_docker_image >>
256
257
    resource_class: 2xlarge+
    steps:
258
      - checkout_merge
259
      - designate_upload_channel
260
261
262
      - run: packaging/build_wheel.sh
      - store_artifacts:
          path: dist
Edward Z. Yang's avatar
Edward Z. Yang committed
263
264
265
266
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
267
268
269
270

  binary_linux_conda:
    <<: *binary_common
    docker:
271
      - image: "<< parameters.conda_docker_image >>"
272
    resource_class: 2xlarge+
273
    steps:
274
      - checkout_merge
275
      - designate_upload_channel
276
277
278
      - run: packaging/build_conda.sh
      - store_artifacts:
          path: /opt/conda/conda-bld/linux-64
Edward Z. Yang's avatar
Edward Z. Yang committed
279
280
281
282
      - persist_to_workspace:
          root: /opt/conda/conda-bld/linux-64
          paths:
            - "*"
283
284
      - store_test_results:
          path: build_results/
285

Francisco Massa's avatar
Francisco Massa committed
286
  binary_win_conda:
287
288
    <<: *binary_common
    executor: windows-cpu
289
290
    steps:
      - checkout_merge
291
      - designate_upload_channel
292
      - install_cuda_compatible_cmath
293
294
      - run:
          name: Build conda packages
295
          no_output_timeout: 20m
296
          command: |
297
298
299
300
301
302
303
            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
304
            rm /C/tools/miniconda3/conda-bld/win-64/vs${VC_YEAR}*.tar.bz2
305
      - store_artifacts:
306
          path: C:/tools/miniconda3/conda-bld/win-64
307
      - persist_to_workspace:
308
          root: C:/tools/miniconda3/conda-bld/win-64
309
310
311
312
313
          paths:
            - "*"
      - store_test_results:
          path: build_results/

314
  binary_win_wheel:
315
316
    <<: *binary_common
    executor: windows-cpu
317
318
    steps:
      - checkout_merge
319
      - designate_upload_channel
320
      - install_cuda_compatible_cmath
321
322
323
      - run:
          name: Build wheel packages
          command: |
324
325
326
327
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_wheel.sh
328
      - store_artifacts:
329
          path: dist
330
      - persist_to_workspace:
331
          root: dist
332
333
334
335
336
          paths:
            - "*"
      - store_test_results:
          path: build_results/

337
338
339
  binary_macos_wheel:
    <<: *binary_common
    macos:
340
      xcode: "9.4.1"
341
    steps:
342
      - checkout_merge
343
      - designate_upload_channel
344
345
346
347
348
349
350
351
352
353
354
      - 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
355
356
357
358
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
359

360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
  binary_ios_build:
    <<: *torchvision_ios_params
    macos:
      xcode: "12.0"
    steps:
    - attach_workspace:
        at: ~/workspace
    - checkout
    - run_brew_for_ios_build
    - run:
        name: Build
        no_output_timeout: "1h"
        command: |
          script="/Users/distiller/project/.circleci/unittest/ios/scripts/binary_ios_build.sh"
          cat "$script"
          source "$script"
    - persist_to_workspace:
        root: /Users/distiller/workspace/
        paths: ios

  binary_ios_upload:
    <<: *torchvision_ios_params
    macos:
      xcode: "12.0"
    steps:
    - attach_workspace:
        at: ~/workspace
    - checkout
    - run_brew_for_ios_build
    - run:
        name: Upload
        no_output_timeout: "1h"
        command: |
          script="/Users/distiller/project/.circleci/unittest/ios/scripts/binary_ios_upload.sh"
          cat "$script"
          source "$script"

397
398
399
  binary_macos_conda:
    <<: *binary_common
    macos:
400
      xcode: "9.4.1"
401
    steps:
402
      - checkout_merge
403
      - designate_upload_channel
404
405
406
407
408
409
410
411
412
      - 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
413
414
415
416
      - persist_to_workspace:
          root: /Users/distiller/miniconda3/conda-bld/osx-64
          paths:
            - "*"
417
418
      - store_test_results:
          path: build_results/
Edward Z. Yang's avatar
Edward Z. Yang committed
419
420
421
422
423
424
425
426

  # Requires org-member context
  binary_conda_upload:
    docker:
      - image: continuumio/miniconda
    steps:
      - attach_workspace:
          at: ~/workspace
427
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
428
429
430
431
432
      - run:
          command: |
            # Prevent credential from leaking
            conda install -yq anaconda-client
            set -x
433
            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
434
435
436

  # Requires org-member context
  binary_wheel_upload:
Edward Z. Yang's avatar
Edward Z. Yang committed
437
438
439
440
    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
441
442
443
444
445
    docker:
      - image: circleci/python:3.7
    steps:
      - attach_workspace:
          at: ~/workspace
446
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
447
448
449
450
451
452
453
454
455
456
      - 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
457
            for pkg in ~/workspace/*.whl; do
458
              aws s3 cp "$pkg" "s3://pytorch/whl/${UPLOAD_CHANNEL}/<< parameters.subfolder >>" --acl public-read
Edward Z. Yang's avatar
Edward Z. Yang committed
459
            done
460

guyang3532's avatar
guyang3532 committed
461
462
463
464
465
  smoke_test_linux_conda:
    <<: *smoke_test_common
    steps:
      - attach_workspace:
          at: ~/workspace
466
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
      - 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
485
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
      - 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
506
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
      - 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
526
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
527
528
529
530
531
532
      - 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
533
534
535
536
537
            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
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
            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
556
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
557
558
559
560
561
      - run:
          name: install binaries
          command: |
            set -x
            eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
562
563
564
565
566
            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
567
568
569
570
571
572
573
574
575
576
            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"

577
578
579
580
581
582
583
  unittest_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout
584
      - designate_upload_channel
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
      - 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"
623
      PYTHON_VERSION: << parameters.python_version >>
624
625
    steps:
      - checkout
626
      - designate_upload_channel
627
628
629
630
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
631
632
633
634
635
      - restore_cache:

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

636
637
      - run:
          name: Setup
638
          command: docker run -e PYTHON_VERSION -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/setup_env.sh
639
640
      - save_cache:

641
          key: env-v3-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/environment.yml" }}-{{ checksum ".circleci-weekly" }}
642
643
644
645
646
647

          paths:
            - conda
            - env
      - run:
          name: Install torchvision
648
          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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
      - 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
664
      - designate_upload_channel
665
      - install_cuda_compatible_cmath
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
      - 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"
703
      PYTHON_VERSION: << parameters.python_version >>
704
705
    steps:
      - checkout
706
      - designate_upload_channel
707
      - install_cuda_compatible_cmath
708
709
710
711
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
712
713
714
715
      - restore_cache:

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

717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
      - 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
738

Francisco Massa's avatar
Francisco Massa committed
739
740
741
742
743
744
745
  unittest_macos_cpu:
    <<: *binary_common
    macos:
      xcode: "9.4.1"
    resource_class: large
    steps:
      - checkout
746
      - designate_upload_channel
Francisco Massa's avatar
Francisco Massa committed
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
      - 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

782
783
784
785
786
787
788
  cmake_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout_merge
789
      - designate_upload_channel
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
      - 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
807
      - designate_upload_channel
808
809
810
811
812
      - 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
813
          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
814
815
816
817

  cmake_macos_cpu:
    <<: *binary_common
    macos:
818
      xcode: "9.4.1"
819
820
    steps:
      - checkout_merge
821
      - designate_upload_channel
822
823
824
825
826
827
828
829
830
831
832
833
834
835
      - 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
836
      - designate_upload_channel
837
      - install_cuda_compatible_cmath
838
839
840
841
842
843
844
845
846
847
848
849
      - 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
850
      - designate_upload_channel
851
      - install_cuda_compatible_cmath
852
853
854
855
856
857
858
      - run:
          command: |
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_cmake.sh

859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
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
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
  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


924
925
926
927
workflows:
  build:
    jobs:
      - circleci_consistency
Edward Z. Yang's avatar
Edward Z. Yang committed
928
      - binary_linux_wheel:
929
          conda_docker_image: pytorch/conda-builder:cpu
930
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
931
          name: binary_linux_wheel_py3.6_cpu
932
          python_version: '3.6'
933
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
934
      - binary_linux_wheel:
935
          conda_docker_image: pytorch/conda-builder:cuda101
Francisco Massa's avatar
Francisco Massa committed
936
937
938
          cu_version: cu101
          name: binary_linux_wheel_py3.6_cu101
          python_version: '3.6'
939
940
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
941
          conda_docker_image: pytorch/conda-builder:cuda102
942
943
944
945
          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
946
      - binary_linux_wheel:
947
948
949
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_wheel_py3.6_cu111
peterjc123's avatar
peterjc123 committed
950
          python_version: '3.6'
951
          wheel_docker_image: pytorch/manylinux-cuda111
Jeff Daily's avatar
Jeff Daily committed
952
953
954
955
956
      - binary_linux_wheel:
          cu_version: rocm4.0.1
          name: binary_linux_wheel_py3.6_rocm4.0.1
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-rocm:4.0.1
Edward Z. Yang's avatar
Edward Z. Yang committed
957
      - binary_linux_wheel:
958
          conda_docker_image: pytorch/conda-builder:cpu
959
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
960
          name: binary_linux_wheel_py3.7_cpu
961
          python_version: '3.7'
962
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
963
      - binary_linux_wheel:
964
          conda_docker_image: pytorch/conda-builder:cuda101
Francisco Massa's avatar
Francisco Massa committed
965
966
967
          cu_version: cu101
          name: binary_linux_wheel_py3.7_cu101
          python_version: '3.7'
968
969
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
970
          conda_docker_image: pytorch/conda-builder:cuda102
971
972
973
974
          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
975
      - binary_linux_wheel:
976
977
978
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_wheel_py3.7_cu111
peterjc123's avatar
peterjc123 committed
979
          python_version: '3.7'
980
          wheel_docker_image: pytorch/manylinux-cuda111
Jeff Daily's avatar
Jeff Daily committed
981
982
983
984
985
      - binary_linux_wheel:
          cu_version: rocm4.0.1
          name: binary_linux_wheel_py3.7_rocm4.0.1
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-rocm:4.0.1
986
      - binary_linux_wheel:
987
          conda_docker_image: pytorch/conda-builder:cpu
988
989
990
          cu_version: cpu
          name: binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
991
          wheel_docker_image: pytorch/manylinux-cuda102
992
      - binary_linux_wheel:
993
          conda_docker_image: pytorch/conda-builder:cuda101
994
995
996
          cu_version: cu101
          name: binary_linux_wheel_py3.8_cu101
          python_version: '3.8'
997
998
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
999
          conda_docker_image: pytorch/conda-builder:cuda102
1000
1001
1002
1003
          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
1004
      - binary_linux_wheel:
1005
1006
1007
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_wheel_py3.8_cu111
peterjc123's avatar
peterjc123 committed
1008
          python_version: '3.8'
1009
          wheel_docker_image: pytorch/manylinux-cuda111
Jeff Daily's avatar
Jeff Daily committed
1010
1011
1012
1013
1014
      - binary_linux_wheel:
          cu_version: rocm4.0.1
          name: binary_linux_wheel_py3.8_rocm4.0.1
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-rocm:4.0.1
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
      - 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:
1034
1035
1036
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_wheel_py3.9_cu111
1037
          python_version: '3.9'
1038
          wheel_docker_image: pytorch/manylinux-cuda111
Jeff Daily's avatar
Jeff Daily committed
1039
1040
1041
1042
1043
      - binary_linux_wheel:
          cu_version: rocm4.0.1
          name: binary_linux_wheel_py3.9_rocm4.0.1
          python_version: '3.9'
          wheel_docker_image: pytorch/manylinux-rocm:4.0.1
Edward Z. Yang's avatar
Edward Z. Yang committed
1044
      - binary_macos_wheel:
1045
          conda_docker_image: pytorch/conda-builder:cpu
1046
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1047
          name: binary_macos_wheel_py3.6_cpu
1048
          python_version: '3.6'
1049
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1050
      - binary_macos_wheel:
1051
          conda_docker_image: pytorch/conda-builder:cpu
1052
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1053
          name: binary_macos_wheel_py3.7_cpu
1054
          python_version: '3.7'
1055
          wheel_docker_image: pytorch/manylinux-cuda102
1056
      - binary_macos_wheel:
1057
          conda_docker_image: pytorch/conda-builder:cpu
1058
1059
1060
          cu_version: cpu
          name: binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
1061
          wheel_docker_image: pytorch/manylinux-cuda102
1062
1063
1064
1065
1066
1067
      - 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
1068
      - binary_win_wheel:
1069
1070
1071
1072
          cu_version: cpu
          filters:
            branches:
              only: master
1073
1074
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1075
1076
          name: binary_win_wheel_py3.6_cpu
          python_version: '3.6'
1077
      - binary_win_wheel:
1078
          cu_version: cu101
1079
1080
1081
          filters:
            branches:
              only: master
1082
1083
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1084
1085
          name: binary_win_wheel_py3.6_cu101
          python_version: '3.6'
1086
      - binary_win_wheel:
1087
          cu_version: cu102
1088
1089
1090
          filters:
            branches:
              only: master
1091
1092
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1093
1094
          name: binary_win_wheel_py3.6_cu102
          python_version: '3.6'
peterjc123's avatar
peterjc123 committed
1095
      - binary_win_wheel:
1096
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
1097
1098
1099
1100
1101
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1102
          name: binary_win_wheel_py3.6_cu111
peterjc123's avatar
peterjc123 committed
1103
          python_version: '3.6'
1104
      - binary_win_wheel:
1105
1106
1107
1108
          cu_version: cpu
          filters:
            branches:
              only: master
1109
1110
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1111
1112
          name: binary_win_wheel_py3.7_cpu
          python_version: '3.7'
1113
      - binary_win_wheel:
1114
          cu_version: cu101
1115
1116
1117
          filters:
            branches:
              only: master
1118
1119
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1120
1121
          name: binary_win_wheel_py3.7_cu101
          python_version: '3.7'
1122
      - binary_win_wheel:
1123
          cu_version: cu102
1124
1125
1126
          filters:
            branches:
              only: master
1127
1128
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1129
1130
          name: binary_win_wheel_py3.7_cu102
          python_version: '3.7'
peterjc123's avatar
peterjc123 committed
1131
      - binary_win_wheel:
1132
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
1133
1134
1135
1136
1137
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1138
          name: binary_win_wheel_py3.7_cu111
peterjc123's avatar
peterjc123 committed
1139
          python_version: '3.7'
1140
      - binary_win_wheel:
1141
          cu_version: cpu
1142
1143
1144
1145
1146
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1147
1148
          name: binary_win_wheel_py3.8_cpu
          python_version: '3.8'
1149
      - binary_win_wheel:
1150
          cu_version: cu101
1151
1152
1153
          filters:
            branches:
              only: master
1154
1155
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1156
1157
          name: binary_win_wheel_py3.8_cu101
          python_version: '3.8'
1158
      - binary_win_wheel:
1159
          cu_version: cu102
peterjc123's avatar
peterjc123 committed
1160
1161
1162
1163
1164
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1165
1166
          name: binary_win_wheel_py3.8_cu102
          python_version: '3.8'
peterjc123's avatar
peterjc123 committed
1167
      - binary_win_wheel:
1168
          cu_version: cu111
1169
1170
1171
1172
1173
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1174
          name: binary_win_wheel_py3.8_cu111
peterjc123's avatar
peterjc123 committed
1175
          python_version: '3.8'
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
      - 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:
1199
1200
          cu_version: cu111
          name: binary_win_wheel_py3.9_cu111
1201
          python_version: '3.9'
Edward Z. Yang's avatar
Edward Z. Yang committed
1202
      - binary_linux_conda:
1203
          conda_docker_image: pytorch/conda-builder:cpu
1204
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1205
          name: binary_linux_conda_py3.6_cpu
1206
          python_version: '3.6'
1207
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1208
      - binary_linux_conda:
1209
          conda_docker_image: pytorch/conda-builder:cuda101
Francisco Massa's avatar
Francisco Massa committed
1210
1211
1212
          cu_version: cu101
          name: binary_linux_conda_py3.6_cu101
          python_version: '3.6'
1213
1214
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
1215
          conda_docker_image: pytorch/conda-builder:cuda102
1216
1217
1218
1219
          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
1220
      - binary_linux_conda:
1221
1222
1223
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_conda_py3.6_cu111
peterjc123's avatar
peterjc123 committed
1224
          python_version: '3.6'
1225
          wheel_docker_image: pytorch/manylinux-cuda111
Edward Z. Yang's avatar
Edward Z. Yang committed
1226
      - binary_linux_conda:
1227
          conda_docker_image: pytorch/conda-builder:cpu
1228
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1229
          name: binary_linux_conda_py3.7_cpu
1230
          python_version: '3.7'
1231
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1232
      - binary_linux_conda:
1233
          conda_docker_image: pytorch/conda-builder:cuda101
Francisco Massa's avatar
Francisco Massa committed
1234
1235
1236
          cu_version: cu101
          name: binary_linux_conda_py3.7_cu101
          python_version: '3.7'
1237
1238
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
1239
          conda_docker_image: pytorch/conda-builder:cuda102
1240
1241
1242
1243
          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
1244
      - binary_linux_conda:
1245
1246
1247
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_conda_py3.7_cu111
peterjc123's avatar
peterjc123 committed
1248
          python_version: '3.7'
1249
          wheel_docker_image: pytorch/manylinux-cuda111
1250
      - binary_linux_conda:
1251
          conda_docker_image: pytorch/conda-builder:cpu
1252
1253
1254
          cu_version: cpu
          name: binary_linux_conda_py3.8_cpu
          python_version: '3.8'
1255
          wheel_docker_image: pytorch/manylinux-cuda102
1256
      - binary_linux_conda:
1257
          conda_docker_image: pytorch/conda-builder:cuda101
1258
1259
1260
          cu_version: cu101
          name: binary_linux_conda_py3.8_cu101
          python_version: '3.8'
1261
1262
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
1263
          conda_docker_image: pytorch/conda-builder:cuda102
1264
1265
1266
1267
          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
1268
      - binary_linux_conda:
1269
1270
1271
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_conda_py3.8_cu111
peterjc123's avatar
peterjc123 committed
1272
          python_version: '3.8'
1273
          wheel_docker_image: pytorch/manylinux-cuda111
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
      - 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:
1293
1294
1295
          conda_docker_image: pytorch/conda-builder:cuda111
          cu_version: cu111
          name: binary_linux_conda_py3.9_cu111
1296
          python_version: '3.9'
1297
          wheel_docker_image: pytorch/manylinux-cuda111
Edward Z. Yang's avatar
Edward Z. Yang committed
1298
      - binary_macos_conda:
1299
          conda_docker_image: pytorch/conda-builder:cpu
1300
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1301
          name: binary_macos_conda_py3.6_cpu
1302
          python_version: '3.6'
1303
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1304
      - binary_macos_conda:
1305
          conda_docker_image: pytorch/conda-builder:cpu
1306
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1307
          name: binary_macos_conda_py3.7_cpu
1308
          python_version: '3.7'
1309
          wheel_docker_image: pytorch/manylinux-cuda102
1310
      - binary_macos_conda:
1311
          conda_docker_image: pytorch/conda-builder:cpu
1312
1313
1314
          cu_version: cpu
          name: binary_macos_conda_py3.8_cpu
          python_version: '3.8'
1315
          wheel_docker_image: pytorch/manylinux-cuda102
1316
1317
1318
1319
1320
1321
      - 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
1322
      - binary_win_conda:
1323
1324
1325
1326
          cu_version: cpu
          filters:
            branches:
              only: master
1327
1328
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1329
1330
          name: binary_win_conda_py3.6_cpu
          python_version: '3.6'
1331
      - binary_win_conda:
1332
          cu_version: cu101
1333
1334
1335
          filters:
            branches:
              only: master
1336
1337
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1338
1339
          name: binary_win_conda_py3.6_cu101
          python_version: '3.6'
1340
      - binary_win_conda:
1341
          cu_version: cu102
1342
1343
1344
          filters:
            branches:
              only: master
1345
1346
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1347
1348
          name: binary_win_conda_py3.6_cu102
          python_version: '3.6'
peterjc123's avatar
peterjc123 committed
1349
      - binary_win_conda:
1350
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
1351
1352
1353
1354
1355
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1356
          name: binary_win_conda_py3.6_cu111
peterjc123's avatar
peterjc123 committed
1357
          python_version: '3.6'
1358
      - binary_win_conda:
1359
1360
1361
1362
          cu_version: cpu
          filters:
            branches:
              only: master
1363
1364
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1365
1366
          name: binary_win_conda_py3.7_cpu
          python_version: '3.7'
1367
      - binary_win_conda:
1368
          cu_version: cu101
1369
1370
1371
          filters:
            branches:
              only: master
1372
1373
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1374
1375
          name: binary_win_conda_py3.7_cu101
          python_version: '3.7'
1376
      - binary_win_conda:
1377
          cu_version: cu102
1378
1379
1380
          filters:
            branches:
              only: master
1381
1382
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1383
1384
          name: binary_win_conda_py3.7_cu102
          python_version: '3.7'
peterjc123's avatar
peterjc123 committed
1385
      - binary_win_conda:
1386
          cu_version: cu111
peterjc123's avatar
peterjc123 committed
1387
1388
1389
1390
1391
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1392
          name: binary_win_conda_py3.7_cu111
peterjc123's avatar
peterjc123 committed
1393
          python_version: '3.7'
1394
      - binary_win_conda:
1395
          cu_version: cpu
1396
1397
1398
1399
1400
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1401
1402
          name: binary_win_conda_py3.8_cpu
          python_version: '3.8'
1403
      - binary_win_conda:
1404
          cu_version: cu101
1405
1406
1407
          filters:
            branches:
              only: master
1408
1409
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1410
1411
          name: binary_win_conda_py3.8_cu101
          python_version: '3.8'
1412
      - binary_win_conda:
1413
          cu_version: cu102
peterjc123's avatar
peterjc123 committed
1414
1415
1416
1417
1418
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1419
1420
          name: binary_win_conda_py3.8_cu102
          python_version: '3.8'
peterjc123's avatar
peterjc123 committed
1421
      - binary_win_conda:
1422
          cu_version: cu111
1423
1424
1425
1426
1427
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1428
          name: binary_win_conda_py3.8_cu111
peterjc123's avatar
peterjc123 committed
1429
          python_version: '3.8'
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
      - 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:
1453
1454
          cu_version: cu111
          name: binary_win_conda_py3.9_cu111
1455
          python_version: '3.9'
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
      - 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
1467
1468
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1469
1470
1471
1472
          name: upload_docs
          python_version: '3.7'
          requires:
          - build_docs
1473
      - python_lint
1474
      - python_type_check
1475
      - docstring_parameters_sync
1476
      - clang_format
Francisco Massa's avatar
Francisco Massa committed
1477
      - torchhub_test
1478
      - torch_onnx_test
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
      - binary_ios_build:
          build_environment: binary-libtorchvision_ops-ios-12.0.0-x86_64
          context: org-member
          ios_arch: x86_64
          ios_platform: SIMULATOR
          name: binary_libtorchvision_ops_ios_12.0.0_x86_64
      - binary_ios_build:
          build_environment: binary-libtorchvision_ops-ios-12.0.0-arm64
          context: org-member
          ios_arch: arm64
          ios_platform: OS
          name: binary_libtorchvision_ops_ios_12.0.0_arm64
Edward Z. Yang's avatar
Edward Z. Yang committed
1491

1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
  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'
1506
1507
1508
1509
      - unittest_linux_cpu:
          cu_version: cpu
          name: unittest_linux_cpu_py3.9
          python_version: '3.9'
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
      - 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'
1532
1533
1534
1535
1536
1537
1538
1539
1540
      - unittest_linux_gpu:
          cu_version: cu101
          filters:
            branches:
              only:
              - master
              - nightly
          name: unittest_linux_gpu_py3.9
          python_version: '3.9'
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
      - 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'
1553
1554
1555
1556
      - unittest_windows_cpu:
          cu_version: cpu
          name: unittest_windows_cpu_py3.9
          python_version: '3.9'
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
      - 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'
1579
1580
1581
1582
1583
1584
1585
1586
1587
      - 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
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
      - 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'
1600
1601
1602
1603
      - unittest_macos_cpu:
          cu_version: cpu
          name: unittest_macos_cpu_py3.9
          python_version: '3.9'
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619

  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'
1620
1621
1622
1623
      - cmake_windows_gpu:
          cu_version: cu101
          name: cmake_windows_gpu
          python_version: '3.8'
1624
1625
1626
1627
1628
      - cmake_macos_cpu:
          cu_version: cpu
          name: cmake_macos_cpu
          python_version: '3.8'

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