config.yml 79.5 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
56
binary_common: &binary_common
  parameters:
    # Edit these defaults to do a release`
    build_version:
      description: "version number of release binary; by default, build a nightly"
      type: string
      default: ""
    pytorch_version:
57
      description: "PyTorch version to build against; by default, use a nightly"
58
      type: string
59
      default: ""
60
61
62
63
    # Don't edit these
    python_version:
      description: "Python version to build against (e.g., 3.7)"
      type: string
Edward Z. Yang's avatar
Edward Z. Yang committed
64
65
    cu_version:
      description: "CUDA version to build against, in CU format (e.g., cpu or cu100)"
66
      type: string
guyang3532's avatar
guyang3532 committed
67
      default: "cpu"
68
69
70
71
    unicode_abi:
      description: "Python 2.7 wheel only: whether or not we are cp27mu (default: no)"
      type: string
      default: ""
Edward Z. Yang's avatar
Edward Z. Yang committed
72
73
74
    wheel_docker_image:
      description: "Wheel only: what docker image to use"
      type: string
75
      default: "pytorch/manylinux-cuda101"
76
77
78
79
  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
80
    CU_VERSION: << parameters.cu_version >>
81

guyang3532's avatar
guyang3532 committed
82
83
84
85
86
smoke_test_common: &smoke_test_common
  <<: *binary_common
  docker:
    - image: torchvision/smoke_test:latest

87
jobs:
88
89
90
91
92
93
94
  circleci_consistency:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
95
            pip install --user --progress-bar off jinja2 pyyaml
96
97
98
            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)

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

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

123
124
125
126
127
128
129
130
131
132
133
  clang_format:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
            sudo apt-get update -y
            sudo apt-get install -y clang-format
            ./travis-scripts/run-clang-format/run-clang-format.py -r torchvision/csrc

134
135
136
  binary_linux_wheel:
    <<: *binary_common
    docker:
Edward Z. Yang's avatar
Edward Z. Yang committed
137
      - image: << parameters.wheel_docker_image >>
138
139
    resource_class: 2xlarge+
    steps:
140
      - checkout_merge
141
142
143
      - run: packaging/build_wheel.sh
      - store_artifacts:
          path: dist
Edward Z. Yang's avatar
Edward Z. Yang committed
144
145
146
147
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
148
149
150
151

  binary_linux_conda:
    <<: *binary_common
    docker:
152
      - image: "pytorch/conda-cuda"
153
    resource_class: 2xlarge+
154
    steps:
155
      - checkout_merge
156
157
158
      - run: packaging/build_conda.sh
      - store_artifacts:
          path: /opt/conda/conda-bld/linux-64
Edward Z. Yang's avatar
Edward Z. Yang committed
159
160
161
162
      - persist_to_workspace:
          root: /opt/conda/conda-bld/linux-64
          paths:
            - "*"
163
164
      - store_test_results:
          path: build_results/
165

Francisco Massa's avatar
Francisco Massa committed
166
  binary_win_conda:
167
168
    <<: *binary_common
    executor: windows-cpu
169
170
171
172
173
    steps:
      - checkout_merge
      - run:
          name: Build conda packages
          command: |
174
175
176
177
178
179
180
            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
181
            rm /C/tools/miniconda3/conda-bld/win-64/vs${VC_YEAR}*.tar.bz2
182
      - store_artifacts:
183
          path: C:/tools/miniconda3/conda-bld/win-64
184
      - persist_to_workspace:
185
          root: C:/tools/miniconda3/conda-bld/win-64
186
187
188
189
190
          paths:
            - "*"
      - store_test_results:
          path: build_results/

191
  binary_win_wheel:
192
193
    <<: *binary_common
    executor: windows-cpu
194
195
196
197
198
    steps:
      - checkout_merge
      - run:
          name: Build wheel packages
          command: |
199
200
201
202
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_wheel.sh
203
      - store_artifacts:
204
          path: dist
205
      - persist_to_workspace:
206
          root: dist
207
208
209
210
211
          paths:
            - "*"
      - store_test_results:
          path: build_results/

212
213
214
215
216
  binary_macos_wheel:
    <<: *binary_common
    macos:
      xcode: "9.0"
    steps:
217
      - checkout_merge
218
219
220
221
222
223
224
225
226
227
228
      - 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
229
230
231
232
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
233
234
235
236
237
238

  binary_macos_conda:
    <<: *binary_common
    macos:
      xcode: "9.0"
    steps:
239
      - checkout_merge
240
241
242
243
244
245
246
247
248
      - 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
249
250
251
252
      - persist_to_workspace:
          root: /Users/distiller/miniconda3/conda-bld/osx-64
          paths:
            - "*"
253
254
      - store_test_results:
          path: build_results/
Edward Z. Yang's avatar
Edward Z. Yang committed
255
256
257
258
259
260
261
262

  # Requires org-member context
  binary_conda_upload:
    docker:
      - image: continuumio/miniconda
    steps:
      - attach_workspace:
          at: ~/workspace
263
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
264
265
266
267
268
      - run:
          command: |
            # Prevent credential from leaking
            conda install -yq anaconda-client
            set -x
269
            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
270
271
272

  # Requires org-member context
  binary_wheel_upload:
Edward Z. Yang's avatar
Edward Z. Yang committed
273
274
275
276
    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
277
278
279
280
281
    docker:
      - image: circleci/python:3.7
    steps:
      - attach_workspace:
          at: ~/workspace
282
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
283
284
285
286
287
288
289
290
291
292
      - 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
293
            for pkg in ~/workspace/*.whl; do
294
              aws s3 cp "$pkg" "s3://pytorch/whl/${UPLOAD_CHANNEL}/<< parameters.subfolder >>" --acl public-read
Edward Z. Yang's avatar
Edward Z. Yang committed
295
            done
296

guyang3532's avatar
guyang3532 committed
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
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
397
398
399
  smoke_test_linux_conda:
    <<: *smoke_test_common
    steps:
      - attach_workspace:
          at: ~/workspace
      - 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
      - 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
      - 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
      - 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
            conda create -yn python${PYTHON_VERSION} python=${PYTHON_VERSION}
            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
      - 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
            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"

400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
  unittest_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout
      - 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"
    steps:
      - checkout
      - 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: docker run -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .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: docker run -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/install.sh
      - 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
      - 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"
    steps:
      - checkout
      - 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-v1-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-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
553

554
555
556
557
workflows:
  build:
    jobs:
      - circleci_consistency
Edward Z. Yang's avatar
Edward Z. Yang committed
558
      - binary_linux_wheel:
559
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
560
          name: binary_linux_wheel_py3.6_cpu
561
          python_version: '3.6'
562
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
563
      - binary_linux_wheel:
564
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
565
          name: binary_linux_wheel_py3.6_cu92
566
          python_version: '3.6'
567
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
568
569
570
571
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.6_cu101
          python_version: '3.6'
572
573
574
575
576
577
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
          cu_version: cu102
          name: binary_linux_wheel_py3.6_cu102
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
578
      - binary_linux_wheel:
579
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
580
          name: binary_linux_wheel_py3.7_cpu
581
          python_version: '3.7'
582
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
583
      - binary_linux_wheel:
584
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
585
          name: binary_linux_wheel_py3.7_cu92
586
          python_version: '3.7'
587
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
588
589
590
591
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.7_cu101
          python_version: '3.7'
592
593
594
595
596
597
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
          cu_version: cu102
          name: binary_linux_wheel_py3.7_cu102
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda102
598
599
600
601
      - binary_linux_wheel:
          cu_version: cpu
          name: binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
602
          wheel_docker_image: pytorch/manylinux-cuda102
603
604
605
606
607
608
609
610
611
      - binary_linux_wheel:
          cu_version: cu92
          name: binary_linux_wheel_py3.8_cu92
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda92
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.8_cu101
          python_version: '3.8'
612
613
614
615
616
617
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_wheel:
          cu_version: cu102
          name: binary_linux_wheel_py3.8_cu102
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
618
      - binary_macos_wheel:
619
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
620
          name: binary_macos_wheel_py3.6_cpu
621
          python_version: '3.6'
622
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
623
      - binary_macos_wheel:
624
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
625
          name: binary_macos_wheel_py3.7_cpu
626
          python_version: '3.7'
627
          wheel_docker_image: pytorch/manylinux-cuda102
628
629
630
631
      - binary_macos_wheel:
          cu_version: cpu
          name: binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
632
          wheel_docker_image: pytorch/manylinux-cuda102
633
      - binary_win_wheel:
634
635
636
637
          cu_version: cpu
          filters:
            branches:
              only: master
638
639
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
640
641
          name: binary_win_wheel_py3.6_cpu
          python_version: '3.6'
642
      - binary_win_wheel:
643
          cu_version: cu92
644
645
646
          filters:
            branches:
              only: master
647
648
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
649
650
          name: binary_win_wheel_py3.6_cu92
          python_version: '3.6'
651
      - binary_win_wheel:
652
          cu_version: cu101
653
654
655
          filters:
            branches:
              only: master
656
657
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
658
659
          name: binary_win_wheel_py3.6_cu101
          python_version: '3.6'
660
      - binary_win_wheel:
661
          cu_version: cu102
662
663
664
          filters:
            branches:
              only: master
665
666
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
667
668
          name: binary_win_wheel_py3.6_cu102
          python_version: '3.6'
669
      - binary_win_wheel:
670
671
672
673
          cu_version: cpu
          filters:
            branches:
              only: master
674
675
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
676
677
          name: binary_win_wheel_py3.7_cpu
          python_version: '3.7'
678
      - binary_win_wheel:
679
          cu_version: cu92
680
681
682
          filters:
            branches:
              only: master
683
684
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
685
686
          name: binary_win_wheel_py3.7_cu92
          python_version: '3.7'
687
      - binary_win_wheel:
688
          cu_version: cu101
689
690
691
          filters:
            branches:
              only: master
692
693
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
694
695
          name: binary_win_wheel_py3.7_cu101
          python_version: '3.7'
696
      - binary_win_wheel:
697
          cu_version: cu102
698
699
700
          filters:
            branches:
              only: master
701
702
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
703
704
          name: binary_win_wheel_py3.7_cu102
          python_version: '3.7'
705
      - binary_win_wheel:
706
707
708
          cu_version: cpu
          name: binary_win_wheel_py3.8_cpu
          python_version: '3.8'
709
      - binary_win_wheel:
710
          cu_version: cu92
711
712
713
          filters:
            branches:
              only: master
714
715
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
716
717
          name: binary_win_wheel_py3.8_cu92
          python_version: '3.8'
718
      - binary_win_wheel:
719
          cu_version: cu101
720
721
722
          filters:
            branches:
              only: master
723
724
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
725
726
          name: binary_win_wheel_py3.8_cu101
          python_version: '3.8'
727
      - binary_win_wheel:
728
          cu_version: cu102
729
730
          name: binary_win_wheel_py3.8_cu102
          python_version: '3.8'
Edward Z. Yang's avatar
Edward Z. Yang committed
731
      - binary_linux_conda:
732
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
733
          name: binary_linux_conda_py3.6_cpu
734
          python_version: '3.6'
735
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
736
      - binary_linux_conda:
737
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
738
          name: binary_linux_conda_py3.6_cu92
739
          python_version: '3.6'
740
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
741
742
743
744
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.6_cu101
          python_version: '3.6'
745
746
747
748
749
750
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
          cu_version: cu102
          name: binary_linux_conda_py3.6_cu102
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
751
      - binary_linux_conda:
752
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
753
          name: binary_linux_conda_py3.7_cpu
754
          python_version: '3.7'
755
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
756
      - binary_linux_conda:
757
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
758
          name: binary_linux_conda_py3.7_cu92
759
          python_version: '3.7'
760
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
761
762
763
764
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.7_cu101
          python_version: '3.7'
765
766
767
768
769
770
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
          cu_version: cu102
          name: binary_linux_conda_py3.7_cu102
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda102
771
772
773
774
      - binary_linux_conda:
          cu_version: cpu
          name: binary_linux_conda_py3.8_cpu
          python_version: '3.8'
775
          wheel_docker_image: pytorch/manylinux-cuda102
776
777
778
779
780
781
782
783
784
      - binary_linux_conda:
          cu_version: cu92
          name: binary_linux_conda_py3.8_cu92
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda92
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.8_cu101
          python_version: '3.8'
785
786
787
788
789
790
          wheel_docker_image: pytorch/manylinux-cuda101
      - binary_linux_conda:
          cu_version: cu102
          name: binary_linux_conda_py3.8_cu102
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
791
      - binary_macos_conda:
792
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
793
          name: binary_macos_conda_py3.6_cpu
794
          python_version: '3.6'
795
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
796
      - binary_macos_conda:
797
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
798
          name: binary_macos_conda_py3.7_cpu
799
          python_version: '3.7'
800
          wheel_docker_image: pytorch/manylinux-cuda102
801
802
803
804
      - binary_macos_conda:
          cu_version: cpu
          name: binary_macos_conda_py3.8_cpu
          python_version: '3.8'
805
          wheel_docker_image: pytorch/manylinux-cuda102
806
      - binary_win_conda:
807
808
809
810
          cu_version: cpu
          filters:
            branches:
              only: master
811
812
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
813
814
          name: binary_win_conda_py3.6_cpu
          python_version: '3.6'
815
      - binary_win_conda:
816
          cu_version: cu92
817
818
819
          filters:
            branches:
              only: master
820
821
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
822
823
          name: binary_win_conda_py3.6_cu92
          python_version: '3.6'
824
      - binary_win_conda:
825
          cu_version: cu101
826
827
828
          filters:
            branches:
              only: master
829
830
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
831
832
          name: binary_win_conda_py3.6_cu101
          python_version: '3.6'
833
      - binary_win_conda:
834
          cu_version: cu102
835
836
837
          filters:
            branches:
              only: master
838
839
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
840
841
          name: binary_win_conda_py3.6_cu102
          python_version: '3.6'
842
      - binary_win_conda:
843
844
845
846
          cu_version: cpu
          filters:
            branches:
              only: master
847
848
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
849
850
          name: binary_win_conda_py3.7_cpu
          python_version: '3.7'
851
      - binary_win_conda:
852
          cu_version: cu92
853
854
855
          filters:
            branches:
              only: master
856
857
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
858
859
          name: binary_win_conda_py3.7_cu92
          python_version: '3.7'
860
      - binary_win_conda:
861
          cu_version: cu101
862
863
864
          filters:
            branches:
              only: master
865
866
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
867
868
          name: binary_win_conda_py3.7_cu101
          python_version: '3.7'
869
      - binary_win_conda:
870
          cu_version: cu102
871
872
873
          filters:
            branches:
              only: master
874
875
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
876
877
          name: binary_win_conda_py3.7_cu102
          python_version: '3.7'
878
      - binary_win_conda:
879
880
881
          cu_version: cpu
          name: binary_win_conda_py3.8_cpu
          python_version: '3.8'
882
      - binary_win_conda:
883
          cu_version: cu92
884
885
886
          filters:
            branches:
              only: master
887
888
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
889
890
          name: binary_win_conda_py3.8_cu92
          python_version: '3.8'
891
      - binary_win_conda:
892
          cu_version: cu101
893
894
895
          filters:
            branches:
              only: master
896
897
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
898
899
          name: binary_win_conda_py3.8_cu101
          python_version: '3.8'
900
      - binary_win_conda:
901
          cu_version: cu102
902
903
          name: binary_win_conda_py3.8_cu102
          python_version: '3.8'
904
      - python_lint
905
      - python_type_check
906
      - clang_format
Edward Z. Yang's avatar
Edward Z. Yang committed
907

908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
  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'
      - 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'
      - 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'
      - 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'
Edward Z. Yang's avatar
Edward Z. Yang committed
978
979
980
  nightly:
    jobs:
      - circleci_consistency
981
      - python_lint
982
      - python_type_check
983
      - clang_format
984
      - binary_linux_wheel:
985
          cu_version: cpu
986
987
988
          filters:
            branches:
              only: nightly
989
990
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
991
          name: nightly_binary_linux_wheel_py3.6_cpu
992
          python_version: '3.6'
993
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
994
995
      - binary_wheel_upload:
          context: org-member
996
997
998
          filters:
            branches:
              only: nightly
999
1000
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1001
          name: nightly_binary_linux_wheel_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1002
          requires:
1003
1004
          - nightly_binary_linux_wheel_py3.6_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1005
1006
1007
1008
1009
1010
1011
1012
1013
      - 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
1014
      - binary_linux_wheel:
1015
          cu_version: cu92
1016
1017
1018
          filters:
            branches:
              only: nightly
1019
1020
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1021
          name: nightly_binary_linux_wheel_py3.6_cu92
1022
          python_version: '3.6'
1023
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
1024
1025
      - binary_wheel_upload:
          context: org-member
1026
1027
1028
          filters:
            branches:
              only: nightly
1029
1030
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1031
          name: nightly_binary_linux_wheel_py3.6_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1032
          requires:
1033
1034
          - nightly_binary_linux_wheel_py3.6_cu92
          subfolder: cu92/
guyang3532's avatar
guyang3532 committed
1035
1036
1037
1038
1039
1040
1041
1042
1043
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.6_cu92_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_linux_wheel_py3.6_cu92_upload
1044
      - binary_linux_wheel:
1045
          cu_version: cu101
1046
1047
1048
          filters:
            branches:
              only: nightly
1049
1050
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1051
          name: nightly_binary_linux_wheel_py3.6_cu101
1052
          python_version: '3.6'
1053
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1054
1055
      - binary_wheel_upload:
          context: org-member
1056
1057
1058
          filters:
            branches:
              only: nightly
1059
1060
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1061
          name: nightly_binary_linux_wheel_py3.6_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1062
          requires:
1063
1064
          - nightly_binary_linux_wheel_py3.6_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1065
1066
1067
1068
1069
1070
1071
1072
1073
      - 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
1074
      - binary_linux_wheel:
1075
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1076
1077
1078
          filters:
            branches:
              only: nightly
1079
1080
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1081
          name: nightly_binary_linux_wheel_py3.6_cu102
Francisco Massa's avatar
Francisco Massa committed
1082
          python_version: '3.6'
1083
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1084
1085
1086
1087
1088
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1089
1090
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1091
          name: nightly_binary_linux_wheel_py3.6_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1092
          requires:
1093
1094
          - nightly_binary_linux_wheel_py3.6_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1095
1096
1097
1098
1099
1100
1101
1102
1103
      - 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
1104
      - binary_linux_wheel:
1105
          cu_version: cpu
1106
1107
1108
          filters:
            branches:
              only: nightly
1109
1110
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1111
          name: nightly_binary_linux_wheel_py3.7_cpu
1112
          python_version: '3.7'
1113
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1114
1115
      - binary_wheel_upload:
          context: org-member
1116
1117
1118
          filters:
            branches:
              only: nightly
1119
1120
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1121
          name: nightly_binary_linux_wheel_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1122
          requires:
1123
1124
          - nightly_binary_linux_wheel_py3.7_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1125
1126
1127
1128
1129
1130
1131
1132
1133
      - 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
1134
      - binary_linux_wheel:
1135
          cu_version: cu92
1136
1137
1138
          filters:
            branches:
              only: nightly
1139
1140
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1141
          name: nightly_binary_linux_wheel_py3.7_cu92
1142
          python_version: '3.7'
1143
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
1144
1145
      - binary_wheel_upload:
          context: org-member
1146
1147
1148
          filters:
            branches:
              only: nightly
1149
1150
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1151
          name: nightly_binary_linux_wheel_py3.7_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1152
          requires:
1153
1154
          - nightly_binary_linux_wheel_py3.7_cu92
          subfolder: cu92/
guyang3532's avatar
guyang3532 committed
1155
1156
1157
1158
1159
1160
1161
1162
1163
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.7_cu92_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_linux_wheel_py3.7_cu92_upload
1164
      - binary_linux_wheel:
1165
          cu_version: cu101
1166
1167
1168
          filters:
            branches:
              only: nightly
1169
1170
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1171
          name: nightly_binary_linux_wheel_py3.7_cu101
1172
          python_version: '3.7'
1173
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1174
1175
      - binary_wheel_upload:
          context: org-member
1176
1177
1178
          filters:
            branches:
              only: nightly
1179
1180
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1181
          name: nightly_binary_linux_wheel_py3.7_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1182
          requires:
1183
1184
          - nightly_binary_linux_wheel_py3.7_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1185
1186
1187
1188
1189
1190
1191
1192
1193
      - 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
1194
      - binary_linux_wheel:
1195
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1196
1197
1198
          filters:
            branches:
              only: nightly
1199
1200
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1201
          name: nightly_binary_linux_wheel_py3.7_cu102
Francisco Massa's avatar
Francisco Massa committed
1202
          python_version: '3.7'
1203
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1204
1205
1206
1207
1208
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1209
1210
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1211
          name: nightly_binary_linux_wheel_py3.7_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1212
          requires:
1213
1214
          - nightly_binary_linux_wheel_py3.7_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1215
1216
1217
1218
1219
1220
1221
1222
1223
      - 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
1224
1225
1226
1227
1228
      - binary_linux_wheel:
          cu_version: cpu
          filters:
            branches:
              only: nightly
1229
1230
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1231
1232
          name: nightly_binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
1233
          wheel_docker_image: pytorch/manylinux-cuda102
1234
1235
1236
1237
1238
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1239
1240
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1241
1242
1243
1244
          name: nightly_binary_linux_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_linux_wheel_py3.8_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1245
1246
1247
1248
1249
1250
1251
1252
1253
      - 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
1254
1255
1256
1257
1258
      - binary_linux_wheel:
          cu_version: cu92
          filters:
            branches:
              only: nightly
1259
1260
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1261
1262
1263
1264
1265
1266
1267
1268
          name: nightly_binary_linux_wheel_py3.8_cu92
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda92
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1269
1270
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1271
1272
1273
1274
          name: nightly_binary_linux_wheel_py3.8_cu92_upload
          requires:
          - nightly_binary_linux_wheel_py3.8_cu92
          subfolder: cu92/
guyang3532's avatar
guyang3532 committed
1275
1276
1277
1278
1279
1280
1281
1282
1283
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.8_cu92_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_linux_wheel_py3.8_cu92_upload
1284
      - binary_linux_wheel:
1285
          cu_version: cu101
1286
1287
1288
          filters:
            branches:
              only: nightly
1289
1290
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1291
          name: nightly_binary_linux_wheel_py3.8_cu101
1292
          python_version: '3.8'
1293
          wheel_docker_image: pytorch/manylinux-cuda101
1294
1295
1296
1297
1298
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1299
1300
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1301
          name: nightly_binary_linux_wheel_py3.8_cu101_upload
1302
          requires:
1303
1304
          - nightly_binary_linux_wheel_py3.8_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1305
1306
1307
1308
1309
1310
1311
1312
1313
      - 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
1314
      - binary_linux_wheel:
1315
          cu_version: cu102
1316
1317
1318
          filters:
            branches:
              only: nightly
1319
1320
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1321
          name: nightly_binary_linux_wheel_py3.8_cu102
1322
          python_version: '3.8'
1323
          wheel_docker_image: pytorch/manylinux-cuda102
1324
1325
1326
1327
1328
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1329
1330
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1331
          name: nightly_binary_linux_wheel_py3.8_cu102_upload
1332
          requires:
1333
1334
          - nightly_binary_linux_wheel_py3.8_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1335
1336
1337
1338
1339
1340
1341
1342
1343
      - 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
1344
      - binary_macos_wheel:
1345
          cu_version: cpu
1346
1347
1348
          filters:
            branches:
              only: nightly
1349
1350
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1351
          name: nightly_binary_macos_wheel_py3.6_cpu
1352
          python_version: '3.6'
1353
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1354
1355
      - binary_wheel_upload:
          context: org-member
1356
1357
1358
          filters:
            branches:
              only: nightly
1359
1360
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1361
          name: nightly_binary_macos_wheel_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1362
          requires:
1363
1364
          - nightly_binary_macos_wheel_py3.6_cpu
          subfolder: ''
1365
      - binary_macos_wheel:
1366
          cu_version: cpu
1367
1368
1369
          filters:
            branches:
              only: nightly
1370
1371
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1372
          name: nightly_binary_macos_wheel_py3.7_cpu
1373
          python_version: '3.7'
1374
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1375
1376
      - binary_wheel_upload:
          context: org-member
1377
1378
1379
          filters:
            branches:
              only: nightly
1380
1381
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1382
          name: nightly_binary_macos_wheel_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1383
          requires:
1384
1385
          - nightly_binary_macos_wheel_py3.7_cpu
          subfolder: ''
1386
1387
1388
1389
1390
      - binary_macos_wheel:
          cu_version: cpu
          filters:
            branches:
              only: nightly
1391
1392
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1393
1394
          name: nightly_binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
1395
          wheel_docker_image: pytorch/manylinux-cuda102
1396
1397
1398
1399
1400
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1401
1402
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1403
1404
1405
1406
          name: nightly_binary_macos_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_macos_wheel_py3.8_cpu
          subfolder: ''
1407
      - binary_win_wheel:
1408
1409
1410
1411
          cu_version: cpu
          filters:
            branches:
              only: nightly
1412
1413
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1414
1415
1416
1417
1418
1419
1420
          name: nightly_binary_win_wheel_py3.6_cpu
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1421
1422
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1423
1424
1425
1426
          name: nightly_binary_win_wheel_py3.6_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1427
1428
1429
1430
1431
1432
1433
1434
1435
      - 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
1436
      - binary_win_wheel:
1437
          cu_version: cu92
1438
1439
1440
          filters:
            branches:
              only: nightly
1441
1442
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1443
1444
1445
1446
1447
1448
1449
          name: nightly_binary_win_wheel_py3.6_cu92
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1450
1451
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1452
1453
1454
1455
          name: nightly_binary_win_wheel_py3.6_cu92_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu92
          subfolder: cu92/
guyang3532's avatar
guyang3532 committed
1456
1457
1458
1459
1460
1461
1462
1463
1464
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.6_cu92_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_win_wheel_py3.6_cu92_upload
1465
      - binary_win_wheel:
1466
          cu_version: cu101
1467
1468
1469
          filters:
            branches:
              only: nightly
1470
1471
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1472
1473
1474
1475
1476
1477
1478
          name: nightly_binary_win_wheel_py3.6_cu101
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1479
1480
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1481
1482
1483
1484
          name: nightly_binary_win_wheel_py3.6_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1485
1486
1487
1488
1489
1490
1491
1492
1493
      - smoke_test_win_pip:
          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
1494
      - binary_win_wheel:
1495
          cu_version: cu102
1496
1497
1498
          filters:
            branches:
              only: nightly
1499
1500
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1501
1502
1503
1504
1505
1506
1507
          name: nightly_binary_win_wheel_py3.6_cu102
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1508
1509
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1510
1511
1512
1513
          name: nightly_binary_win_wheel_py3.6_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1514
1515
1516
1517
1518
1519
1520
1521
1522
      - 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
1523
      - binary_win_wheel:
1524
1525
1526
1527
          cu_version: cpu
          filters:
            branches:
              only: nightly
1528
1529
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1530
1531
1532
1533
1534
1535
1536
          name: nightly_binary_win_wheel_py3.7_cpu
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1537
1538
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1539
1540
1541
1542
          name: nightly_binary_win_wheel_py3.7_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1543
1544
1545
1546
1547
1548
1549
1550
1551
      - 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
1552
      - binary_win_wheel:
1553
          cu_version: cu92
1554
1555
1556
          filters:
            branches:
              only: nightly
1557
1558
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1559
1560
1561
1562
1563
1564
1565
          name: nightly_binary_win_wheel_py3.7_cu92
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1566
1567
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1568
1569
1570
1571
          name: nightly_binary_win_wheel_py3.7_cu92_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu92
          subfolder: cu92/
guyang3532's avatar
guyang3532 committed
1572
1573
1574
1575
1576
1577
1578
1579
1580
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.7_cu92_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_win_wheel_py3.7_cu92_upload
1581
      - binary_win_wheel:
1582
          cu_version: cu101
1583
1584
1585
          filters:
            branches:
              only: nightly
1586
1587
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1588
1589
1590
1591
1592
1593
1594
          name: nightly_binary_win_wheel_py3.7_cu101
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1595
1596
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1597
1598
1599
1600
          name: nightly_binary_win_wheel_py3.7_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1601
1602
1603
1604
1605
1606
1607
1608
1609
      - 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
1610
      - binary_win_wheel:
1611
          cu_version: cu102
1612
1613
1614
          filters:
            branches:
              only: nightly
1615
1616
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1617
1618
1619
1620
1621
1622
1623
          name: nightly_binary_win_wheel_py3.7_cu102
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1624
1625
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1626
1627
1628
1629
          name: nightly_binary_win_wheel_py3.7_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1630
1631
1632
1633
1634
1635
1636
1637
1638
      - 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
1639
      - binary_win_wheel:
1640
1641
1642
1643
          cu_version: cpu
          filters:
            branches:
              only: nightly
1644
1645
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1646
1647
1648
1649
1650
1651
1652
          name: nightly_binary_win_wheel_py3.8_cpu
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1653
1654
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1655
1656
1657
1658
          name: nightly_binary_win_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1659
1660
1661
1662
1663
1664
1665
1666
1667
      - 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
1668
      - binary_win_wheel:
1669
          cu_version: cu92
1670
1671
1672
          filters:
            branches:
              only: nightly
1673
1674
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1675
1676
1677
1678
1679
1680
1681
          name: nightly_binary_win_wheel_py3.8_cu92
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1682
1683
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1684
1685
1686
1687
          name: nightly_binary_win_wheel_py3.8_cu92_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu92
          subfolder: cu92/
guyang3532's avatar
guyang3532 committed
1688
1689
1690
1691
1692
1693
1694
1695
1696
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.8_cu92_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_win_wheel_py3.8_cu92_upload
1697
      - binary_win_wheel:
1698
          cu_version: cu101
1699
1700
1701
          filters:
            branches:
              only: nightly
1702
1703
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1704
1705
1706
1707
1708
1709
1710
          name: nightly_binary_win_wheel_py3.8_cu101
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1711
1712
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1713
1714
1715
1716
          name: nightly_binary_win_wheel_py3.8_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1717
1718
1719
1720
1721
1722
1723
1724
1725
      - 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
1726
      - binary_win_wheel:
1727
          cu_version: cu102
1728
1729
1730
          filters:
            branches:
              only: nightly
1731
1732
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1733
1734
1735
1736
1737
1738
1739
          name: nightly_binary_win_wheel_py3.8_cu102
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1740
1741
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1742
1743
1744
1745
          name: nightly_binary_win_wheel_py3.8_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1746
1747
1748
1749
1750
1751
1752
1753
1754
      - 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
1755
      - binary_linux_conda:
1756
          cu_version: cpu
1757
1758
1759
          filters:
            branches:
              only: nightly
1760
1761
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1762
          name: nightly_binary_linux_conda_py3.6_cpu
1763
          python_version: '3.6'
1764
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1765
1766
      - binary_conda_upload:
          context: org-member
1767
1768
1769
          filters:
            branches:
              only: nightly
1770
1771
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1772
          name: nightly_binary_linux_conda_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1773
          requires:
1774
          - nightly_binary_linux_conda_py3.6_cpu
guyang3532's avatar
guyang3532 committed
1775
1776
1777
1778
1779
1780
1781
1782
1783
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.6_cpu_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_linux_conda_py3.6_cpu_upload
1784
      - binary_linux_conda:
1785
          cu_version: cu92
1786
1787
1788
          filters:
            branches:
              only: nightly
1789
1790
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1791
          name: nightly_binary_linux_conda_py3.6_cu92
1792
          python_version: '3.6'
1793
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
1794
1795
      - binary_conda_upload:
          context: org-member
1796
1797
1798
          filters:
            branches:
              only: nightly
1799
1800
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1801
          name: nightly_binary_linux_conda_py3.6_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1802
          requires:
1803
          - nightly_binary_linux_conda_py3.6_cu92
guyang3532's avatar
guyang3532 committed
1804
1805
1806
1807
1808
1809
1810
1811
1812
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.6_cu92_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_linux_conda_py3.6_cu92_upload
1813
      - binary_linux_conda:
1814
          cu_version: cu101
1815
1816
1817
          filters:
            branches:
              only: nightly
1818
1819
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1820
          name: nightly_binary_linux_conda_py3.6_cu101
1821
          python_version: '3.6'
1822
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1823
1824
      - binary_conda_upload:
          context: org-member
1825
1826
1827
          filters:
            branches:
              only: nightly
1828
1829
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1830
          name: nightly_binary_linux_conda_py3.6_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1831
          requires:
1832
          - nightly_binary_linux_conda_py3.6_cu101
guyang3532's avatar
guyang3532 committed
1833
1834
1835
1836
1837
1838
1839
1840
1841
      - 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
1842
      - binary_linux_conda:
1843
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1844
1845
1846
          filters:
            branches:
              only: nightly
1847
1848
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1849
          name: nightly_binary_linux_conda_py3.6_cu102
Francisco Massa's avatar
Francisco Massa committed
1850
          python_version: '3.6'
1851
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1852
1853
1854
1855
1856
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1857
1858
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1859
          name: nightly_binary_linux_conda_py3.6_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1860
          requires:
1861
          - nightly_binary_linux_conda_py3.6_cu102
guyang3532's avatar
guyang3532 committed
1862
1863
1864
1865
1866
1867
1868
1869
1870
      - 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
1871
      - binary_linux_conda:
1872
          cu_version: cpu
1873
1874
1875
          filters:
            branches:
              only: nightly
1876
1877
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1878
          name: nightly_binary_linux_conda_py3.7_cpu
1879
          python_version: '3.7'
1880
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1881
1882
      - binary_conda_upload:
          context: org-member
1883
1884
1885
          filters:
            branches:
              only: nightly
1886
1887
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1888
          name: nightly_binary_linux_conda_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1889
          requires:
1890
          - nightly_binary_linux_conda_py3.7_cpu
guyang3532's avatar
guyang3532 committed
1891
1892
1893
1894
1895
1896
1897
1898
1899
      - 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
1900
      - binary_linux_conda:
1901
          cu_version: cu92
1902
1903
1904
          filters:
            branches:
              only: nightly
1905
1906
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1907
          name: nightly_binary_linux_conda_py3.7_cu92
1908
          python_version: '3.7'
1909
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
1910
1911
      - binary_conda_upload:
          context: org-member
1912
1913
1914
          filters:
            branches:
              only: nightly
1915
1916
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1917
          name: nightly_binary_linux_conda_py3.7_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1918
          requires:
1919
          - nightly_binary_linux_conda_py3.7_cu92
guyang3532's avatar
guyang3532 committed
1920
1921
1922
1923
1924
1925
1926
1927
1928
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.7_cu92_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_linux_conda_py3.7_cu92_upload
1929
      - binary_linux_conda:
1930
          cu_version: cu101
1931
1932
1933
          filters:
            branches:
              only: nightly
1934
1935
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1936
          name: nightly_binary_linux_conda_py3.7_cu101
1937
          python_version: '3.7'
1938
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1939
1940
      - binary_conda_upload:
          context: org-member
1941
1942
1943
          filters:
            branches:
              only: nightly
1944
1945
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1946
          name: nightly_binary_linux_conda_py3.7_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1947
          requires:
1948
          - nightly_binary_linux_conda_py3.7_cu101
guyang3532's avatar
guyang3532 committed
1949
1950
1951
1952
1953
1954
1955
1956
1957
      - 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
1958
      - binary_linux_conda:
1959
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1960
1961
1962
          filters:
            branches:
              only: nightly
1963
1964
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1965
          name: nightly_binary_linux_conda_py3.7_cu102
Francisco Massa's avatar
Francisco Massa committed
1966
          python_version: '3.7'
1967
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1968
1969
1970
1971
1972
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1973
1974
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1975
          name: nightly_binary_linux_conda_py3.7_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1976
          requires:
1977
          - nightly_binary_linux_conda_py3.7_cu102
guyang3532's avatar
guyang3532 committed
1978
1979
1980
1981
1982
1983
1984
1985
1986
      - 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
1987
1988
1989
1990
1991
      - binary_linux_conda:
          cu_version: cpu
          filters:
            branches:
              only: nightly
1992
1993
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1994
1995
          name: nightly_binary_linux_conda_py3.8_cpu
          python_version: '3.8'
1996
          wheel_docker_image: pytorch/manylinux-cuda102
1997
1998
1999
2000
2001
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2002
2003
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2004
2005
2006
          name: nightly_binary_linux_conda_py3.8_cpu_upload
          requires:
          - nightly_binary_linux_conda_py3.8_cpu
guyang3532's avatar
guyang3532 committed
2007
2008
2009
2010
2011
2012
2013
2014
2015
      - 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
2016
2017
2018
2019
2020
      - binary_linux_conda:
          cu_version: cu92
          filters:
            branches:
              only: nightly
2021
2022
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2023
2024
2025
2026
2027
2028
2029
2030
          name: nightly_binary_linux_conda_py3.8_cu92
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda92
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2031
2032
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2033
2034
2035
          name: nightly_binary_linux_conda_py3.8_cu92_upload
          requires:
          - nightly_binary_linux_conda_py3.8_cu92
guyang3532's avatar
guyang3532 committed
2036
2037
2038
2039
2040
2041
2042
2043
2044
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.8_cu92_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_linux_conda_py3.8_cu92_upload
2045
      - binary_linux_conda:
2046
          cu_version: cu101
2047
2048
2049
          filters:
            branches:
              only: nightly
2050
2051
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2052
          name: nightly_binary_linux_conda_py3.8_cu101
2053
          python_version: '3.8'
2054
          wheel_docker_image: pytorch/manylinux-cuda101
2055
2056
2057
2058
2059
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2060
2061
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2062
          name: nightly_binary_linux_conda_py3.8_cu101_upload
2063
          requires:
2064
          - nightly_binary_linux_conda_py3.8_cu101
guyang3532's avatar
guyang3532 committed
2065
2066
2067
2068
2069
2070
2071
2072
2073
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.8_cu101_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_linux_conda_py3.8_cu101_upload
2074
      - binary_linux_conda:
2075
          cu_version: cu102
2076
2077
2078
          filters:
            branches:
              only: nightly
2079
2080
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2081
          name: nightly_binary_linux_conda_py3.8_cu102
2082
          python_version: '3.8'
2083
          wheel_docker_image: pytorch/manylinux-cuda102
2084
2085
2086
2087
2088
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2089
2090
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2091
          name: nightly_binary_linux_conda_py3.8_cu102_upload
2092
          requires:
2093
          - nightly_binary_linux_conda_py3.8_cu102
guyang3532's avatar
guyang3532 committed
2094
2095
2096
2097
2098
2099
2100
2101
2102
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.8_cu102_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_linux_conda_py3.8_cu102_upload
2103
      - binary_macos_conda:
2104
          cu_version: cpu
2105
2106
2107
          filters:
            branches:
              only: nightly
2108
2109
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
2110
          name: nightly_binary_macos_conda_py3.6_cpu
2111
          python_version: '3.6'
2112
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
2113
2114
      - binary_conda_upload:
          context: org-member
2115
2116
2117
          filters:
            branches:
              only: nightly
2118
2119
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2120
          name: nightly_binary_macos_conda_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2121
          requires:
2122
          - nightly_binary_macos_conda_py3.6_cpu
2123
      - binary_macos_conda:
2124
          cu_version: cpu
2125
2126
2127
          filters:
            branches:
              only: nightly
2128
2129
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
2130
          name: nightly_binary_macos_conda_py3.7_cpu
2131
          python_version: '3.7'
2132
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
2133
2134
      - binary_conda_upload:
          context: org-member
2135
2136
2137
          filters:
            branches:
              only: nightly
2138
2139
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2140
          name: nightly_binary_macos_conda_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2141
          requires:
2142
2143
2144
2145
2146
2147
          - nightly_binary_macos_conda_py3.7_cpu
      - binary_macos_conda:
          cu_version: cpu
          filters:
            branches:
              only: nightly
2148
2149
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2150
2151
          name: nightly_binary_macos_conda_py3.8_cpu
          python_version: '3.8'
2152
          wheel_docker_image: pytorch/manylinux-cuda102
2153
2154
2155
2156
2157
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2158
2159
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2160
2161
          name: nightly_binary_macos_conda_py3.8_cpu_upload
          requires:
2162
          - nightly_binary_macos_conda_py3.8_cpu
2163
      - binary_win_conda:
2164
2165
2166
2167
          cu_version: cpu
          filters:
            branches:
              only: nightly
2168
2169
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2170
2171
2172
2173
2174
2175
2176
          name: nightly_binary_win_conda_py3.6_cpu
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2177
2178
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2179
2180
2181
          name: nightly_binary_win_conda_py3.6_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.6_cpu
guyang3532's avatar
guyang3532 committed
2182
2183
2184
2185
2186
2187
2188
2189
2190
      - 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
2191
      - binary_win_conda:
2192
          cu_version: cu92
2193
2194
2195
          filters:
            branches:
              only: nightly
2196
2197
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2198
2199
2200
2201
2202
2203
2204
          name: nightly_binary_win_conda_py3.6_cu92
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2205
2206
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2207
2208
2209
          name: nightly_binary_win_conda_py3.6_cu92_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu92
guyang3532's avatar
guyang3532 committed
2210
2211
2212
2213
2214
2215
2216
2217
2218
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.6_cu92_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_win_conda_py3.6_cu92_upload
2219
      - binary_win_conda:
2220
          cu_version: cu101
2221
2222
2223
          filters:
            branches:
              only: nightly
2224
2225
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2226
2227
2228
2229
2230
2231
2232
          name: nightly_binary_win_conda_py3.6_cu101
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2233
2234
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2235
2236
2237
          name: nightly_binary_win_conda_py3.6_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu101
guyang3532's avatar
guyang3532 committed
2238
2239
2240
2241
2242
2243
2244
2245
2246
      - 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
2247
      - binary_win_conda:
2248
          cu_version: cu102
2249
2250
2251
          filters:
            branches:
              only: nightly
2252
2253
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2254
2255
2256
2257
2258
2259
2260
          name: nightly_binary_win_conda_py3.6_cu102
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2261
2262
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2263
2264
2265
          name: nightly_binary_win_conda_py3.6_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu102
guyang3532's avatar
guyang3532 committed
2266
2267
2268
2269
2270
2271
2272
2273
2274
      - 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
2275
      - binary_win_conda:
2276
2277
2278
2279
          cu_version: cpu
          filters:
            branches:
              only: nightly
2280
2281
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2282
2283
2284
2285
2286
2287
2288
          name: nightly_binary_win_conda_py3.7_cpu
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2289
2290
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2291
2292
2293
          name: nightly_binary_win_conda_py3.7_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.7_cpu
guyang3532's avatar
guyang3532 committed
2294
2295
2296
2297
2298
2299
2300
2301
2302
      - 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
2303
      - binary_win_conda:
2304
          cu_version: cu92
2305
2306
2307
          filters:
            branches:
              only: nightly
2308
2309
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2310
2311
2312
2313
2314
2315
2316
          name: nightly_binary_win_conda_py3.7_cu92
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2317
2318
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2319
2320
2321
          name: nightly_binary_win_conda_py3.7_cu92_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu92
guyang3532's avatar
guyang3532 committed
2322
2323
2324
2325
2326
2327
2328
2329
2330
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.7_cu92_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_win_conda_py3.7_cu92_upload
2331
      - binary_win_conda:
2332
          cu_version: cu101
2333
2334
2335
          filters:
            branches:
              only: nightly
2336
2337
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2338
2339
2340
2341
2342
2343
2344
          name: nightly_binary_win_conda_py3.7_cu101
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2345
2346
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2347
2348
2349
          name: nightly_binary_win_conda_py3.7_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu101
guyang3532's avatar
guyang3532 committed
2350
2351
2352
2353
2354
2355
2356
2357
2358
      - 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
2359
      - binary_win_conda:
2360
          cu_version: cu102
2361
2362
2363
          filters:
            branches:
              only: nightly
2364
2365
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2366
2367
2368
2369
2370
2371
2372
          name: nightly_binary_win_conda_py3.7_cu102
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2373
2374
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2375
2376
2377
          name: nightly_binary_win_conda_py3.7_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu102
guyang3532's avatar
guyang3532 committed
2378
2379
2380
2381
2382
2383
2384
2385
2386
      - 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
2387
      - binary_win_conda:
2388
2389
2390
2391
          cu_version: cpu
          filters:
            branches:
              only: nightly
2392
2393
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2394
2395
2396
2397
2398
2399
2400
          name: nightly_binary_win_conda_py3.8_cpu
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2401
2402
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2403
2404
2405
          name: nightly_binary_win_conda_py3.8_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.8_cpu
guyang3532's avatar
guyang3532 committed
2406
2407
2408
2409
2410
2411
2412
2413
2414
      - 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
2415
      - binary_win_conda:
2416
          cu_version: cu92
2417
2418
2419
          filters:
            branches:
              only: nightly
2420
2421
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2422
2423
2424
2425
2426
2427
2428
          name: nightly_binary_win_conda_py3.8_cu92
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2429
2430
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2431
2432
2433
          name: nightly_binary_win_conda_py3.8_cu92_upload
          requires:
          - nightly_binary_win_conda_py3.8_cu92
guyang3532's avatar
guyang3532 committed
2434
2435
2436
2437
2438
2439
2440
2441
2442
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.8_cu92_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_win_conda_py3.8_cu92_upload
2443
      - binary_win_conda:
2444
          cu_version: cu101
2445
2446
2447
          filters:
            branches:
              only: nightly
2448
2449
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2450
2451
2452
2453
2454
2455
2456
          name: nightly_binary_win_conda_py3.8_cu101
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2457
2458
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2459
2460
2461
          name: nightly_binary_win_conda_py3.8_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.8_cu101
guyang3532's avatar
guyang3532 committed
2462
2463
2464
2465
2466
2467
2468
2469
2470
      - 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
2471
      - binary_win_conda:
2472
          cu_version: cu102
2473
2474
2475
          filters:
            branches:
              only: nightly
2476
2477
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2478
2479
2480
2481
2482
2483
2484
          name: nightly_binary_win_conda_py3.8_cu102
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2485
2486
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2487
2488
          name: nightly_binary_win_conda_py3.8_cu102_upload
          requires:
guyang3532's avatar
guyang3532 committed
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
          - 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
  docker_build:
    triggers:
      - schedule:
          cron: "0 10 * * 0"
          filters:
            branches:
              only:
                - master
    jobs:
      - smoke_test_docker_image_build:
          context: org-member