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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

guyang3532's avatar
guyang3532 committed
342
343
344
345
346
  smoke_test_linux_conda:
    <<: *smoke_test_common
    steps:
      - attach_workspace:
          at: ~/workspace
347
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
      - 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
366
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
      - 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
387
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
      - 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
407
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
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
      - 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
433
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
      - 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"

450
451
452
453
454
455
456
  unittest_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout
457
      - designate_upload_channel
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
      - 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"
496
      PYTHON_VERSION: << parameters.python_version >>
497
498
    steps:
      - checkout
499
      - designate_upload_channel
500
501
502
503
504
505
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
      - run:
          name: Setup
506
          command: docker run -e PYTHON_VERSION -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/setup_env.sh
507
508
509
510
511
512
513
514
515
      - 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
516
          command: docker run -t --gpus all -v $PWD:$PWD -w $PWD -e UPLOAD_CHANNEL "${image_name}" .circleci/unittest/linux/scripts/install.sh
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
      - 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
532
      - designate_upload_channel
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
      - 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"
570
      PYTHON_VERSION: << parameters.python_version >>
571
572
    steps:
      - checkout
573
      - designate_upload_channel
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .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
599

Francisco Massa's avatar
Francisco Massa committed
600
601
602
603
604
605
606
  unittest_macos_cpu:
    <<: *binary_common
    macos:
      xcode: "9.4.1"
    resource_class: large
    steps:
      - checkout
607
      - designate_upload_channel
Francisco Massa's avatar
Francisco Massa committed
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
      - run:
          name: Install wget
          command: HOMEBREW_NO_AUTO_UPDATE=1 brew install wget
          # Disable brew auto update which is very slow
      - run:
          name: Generate cache key
          # This will refresh cache on Sundays, nightly build should generate new cache.
          command: echo "$(date +"%Y-%U")" > .circleci-weekly
      - restore_cache:

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

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

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

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

643
644
645
646
647
648
649
  cmake_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout_merge
650
      - designate_upload_channel
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
      - run:
          name: Setup conda
          command: .circleci/unittest/linux/scripts/setup_env.sh
      - run: packaging/build_cmake.sh

  cmake_linux_gpu:
    <<: *binary_common
    machine:
      image: ubuntu-1604-cuda-10.1:201909-23
    resource_class: gpu.small
    environment:
      PYTHON_VERSION: << parameters.python_version >>
      PYTORCH_VERSION: << parameters.pytorch_version >>
      UNICODE_ABI: << parameters.unicode_abi >>
      CU_VERSION: << parameters.cu_version >>
    steps:
      - checkout_merge
668
      - designate_upload_channel
669
670
671
672
673
      - run:
          name: Setup conda
          command: docker run -e CU_VERSION -e PYTHON_VERSION -e UNICODE_ABI -e PYTORCH_VERSION -t --gpus all -v $PWD:$PWD -w $PWD << parameters.wheel_docker_image >> .circleci/unittest/linux/scripts/setup_env.sh
      - run:
          name: Build torchvision C++ distribution and test
674
          command: docker run -e CU_VERSION -e PYTHON_VERSION -e UNICODE_ABI -e PYTORCH_VERSION -e UPLOAD_CHANNEL -t --gpus all -v $PWD:$PWD -w $PWD << parameters.wheel_docker_image >> packaging/build_cmake.sh
675
676
677
678

  cmake_macos_cpu:
    <<: *binary_common
    macos:
679
      xcode: "9.4.1"
680
681
    steps:
      - checkout_merge
682
      - designate_upload_channel
683
684
685
686
687
688
689
690
691
692
693
694
695
696
      - run:
          command: |
            curl -o conda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
            sh conda.sh -b
            source $HOME/miniconda3/bin/activate
            conda install -yq conda-build cmake
            packaging/build_cmake.sh

  cmake_windows_cpu:
    <<: *binary_common
    executor:
      name: windows-cpu
    steps:
      - checkout_merge
697
      - designate_upload_channel
698
699
700
701
702
703
704
705
706
707
708
709
      - run:
          command: |
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/build_cmake.sh

  cmake_windows_gpu:
    <<: *binary_common
    executor:
      name: windows-gpu
    steps:
      - checkout_merge
710
      - designate_upload_channel
711
712
713
714
715
716
717
      - run:
          command: |
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_cmake.sh

718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
  build_docs:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda100"
    resource_class: 2xlarge+
    steps:
      - attach_workspace:
          at: ~/workspace
      - checkout
      - run:
          name: Setup
          command: .circleci/unittest/linux/scripts/setup_env.sh
      - designate_upload_channel
      - run:
          name: Install torchvision
          command: .circleci/unittest/linux/scripts/install.sh
      - run:
          name: Build docs
          command: |
            set -ex
            tag=${CIRCLE_TAG:1:5}
            VERSION=${tag:-master}
            eval "$(./conda/bin/conda shell.bash hook)"
            conda activate ./env
            pushd docs
            pip install -r requirements.txt
            make html
            popd
      - persist_to_workspace:
          root: ./
          paths:
            - "*"
      - store_artifacts:
          path: ./docs/build/html
          destination: docs

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


783
784
785
786
workflows:
  build:
    jobs:
      - circleci_consistency
Edward Z. Yang's avatar
Edward Z. Yang committed
787
      - binary_linux_wheel:
788
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
789
          name: binary_linux_wheel_py3.6_cpu
790
          python_version: '3.6'
791
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
792
      - binary_linux_wheel:
793
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
794
          name: binary_linux_wheel_py3.6_cu92
795
          python_version: '3.6'
796
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
797
798
799
800
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.6_cu101
          python_version: '3.6'
801
802
803
804
805
806
          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
peterjc123's avatar
peterjc123 committed
807
808
809
810
811
      - binary_linux_wheel:
          cu_version: cu110
          name: binary_linux_wheel_py3.6_cu110
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda110
Edward Z. Yang's avatar
Edward Z. Yang committed
812
      - binary_linux_wheel:
813
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
814
          name: binary_linux_wheel_py3.7_cpu
815
          python_version: '3.7'
816
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
817
      - binary_linux_wheel:
818
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
819
          name: binary_linux_wheel_py3.7_cu92
820
          python_version: '3.7'
821
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
822
823
824
825
      - binary_linux_wheel:
          cu_version: cu101
          name: binary_linux_wheel_py3.7_cu101
          python_version: '3.7'
826
827
828
829
830
831
          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
peterjc123's avatar
peterjc123 committed
832
833
834
835
836
      - binary_linux_wheel:
          cu_version: cu110
          name: binary_linux_wheel_py3.7_cu110
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda110
837
838
839
840
      - binary_linux_wheel:
          cu_version: cpu
          name: binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
841
          wheel_docker_image: pytorch/manylinux-cuda102
842
843
844
845
846
847
848
849
850
      - 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'
851
852
853
854
855
856
          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
peterjc123's avatar
peterjc123 committed
857
858
859
860
861
      - binary_linux_wheel:
          cu_version: cu110
          name: binary_linux_wheel_py3.8_cu110
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda110
Edward Z. Yang's avatar
Edward Z. Yang committed
862
      - binary_macos_wheel:
863
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
864
          name: binary_macos_wheel_py3.6_cpu
865
          python_version: '3.6'
866
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
867
      - binary_macos_wheel:
868
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
869
          name: binary_macos_wheel_py3.7_cpu
870
          python_version: '3.7'
871
          wheel_docker_image: pytorch/manylinux-cuda102
872
873
874
875
      - binary_macos_wheel:
          cu_version: cpu
          name: binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
876
          wheel_docker_image: pytorch/manylinux-cuda102
877
      - binary_win_wheel:
878
879
880
881
          cu_version: cpu
          filters:
            branches:
              only: master
882
883
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
884
885
          name: binary_win_wheel_py3.6_cpu
          python_version: '3.6'
886
      - binary_win_wheel:
887
          cu_version: cu101
888
889
890
          filters:
            branches:
              only: master
891
892
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
893
894
          name: binary_win_wheel_py3.6_cu101
          python_version: '3.6'
895
      - binary_win_wheel:
896
          cu_version: cu102
897
898
899
          filters:
            branches:
              only: master
900
901
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
902
903
          name: binary_win_wheel_py3.6_cu102
          python_version: '3.6'
peterjc123's avatar
peterjc123 committed
904
905
906
907
908
909
910
911
912
      - binary_win_wheel:
          cu_version: cu110
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: binary_win_wheel_py3.6_cu110
          python_version: '3.6'
913
      - binary_win_wheel:
914
915
916
917
          cu_version: cpu
          filters:
            branches:
              only: master
918
919
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
920
921
          name: binary_win_wheel_py3.7_cpu
          python_version: '3.7'
922
      - binary_win_wheel:
923
          cu_version: cu101
924
925
926
          filters:
            branches:
              only: master
927
928
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
929
930
          name: binary_win_wheel_py3.7_cu101
          python_version: '3.7'
931
      - binary_win_wheel:
932
          cu_version: cu102
933
934
935
          filters:
            branches:
              only: master
936
937
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
938
939
          name: binary_win_wheel_py3.7_cu102
          python_version: '3.7'
peterjc123's avatar
peterjc123 committed
940
941
942
943
944
945
946
947
948
      - binary_win_wheel:
          cu_version: cu110
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: binary_win_wheel_py3.7_cu110
          python_version: '3.7'
949
      - binary_win_wheel:
950
951
952
          cu_version: cpu
          name: binary_win_wheel_py3.8_cpu
          python_version: '3.8'
953
      - binary_win_wheel:
954
          cu_version: cu101
955
956
957
          filters:
            branches:
              only: master
958
959
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
960
961
          name: binary_win_wheel_py3.8_cu101
          python_version: '3.8'
962
      - binary_win_wheel:
963
          cu_version: cu102
peterjc123's avatar
peterjc123 committed
964
965
966
967
968
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
969
970
          name: binary_win_wheel_py3.8_cu102
          python_version: '3.8'
peterjc123's avatar
peterjc123 committed
971
972
973
974
      - binary_win_wheel:
          cu_version: cu110
          name: binary_win_wheel_py3.8_cu110
          python_version: '3.8'
Edward Z. Yang's avatar
Edward Z. Yang committed
975
      - binary_linux_conda:
976
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
977
          name: binary_linux_conda_py3.6_cpu
978
          python_version: '3.6'
979
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
980
      - binary_linux_conda:
981
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
982
          name: binary_linux_conda_py3.6_cu92
983
          python_version: '3.6'
984
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
985
986
987
988
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.6_cu101
          python_version: '3.6'
989
990
991
992
993
994
          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
peterjc123's avatar
peterjc123 committed
995
996
997
998
999
      - binary_linux_conda:
          cu_version: cu110
          name: binary_linux_conda_py3.6_cu110
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda110
Edward Z. Yang's avatar
Edward Z. Yang committed
1000
      - binary_linux_conda:
1001
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1002
          name: binary_linux_conda_py3.7_cpu
1003
          python_version: '3.7'
1004
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1005
      - binary_linux_conda:
1006
          cu_version: cu92
Edward Z. Yang's avatar
Edward Z. Yang committed
1007
          name: binary_linux_conda_py3.7_cu92
1008
          python_version: '3.7'
1009
          wheel_docker_image: pytorch/manylinux-cuda92
Francisco Massa's avatar
Francisco Massa committed
1010
1011
1012
1013
      - binary_linux_conda:
          cu_version: cu101
          name: binary_linux_conda_py3.7_cu101
          python_version: '3.7'
1014
1015
1016
1017
1018
1019
          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
peterjc123's avatar
peterjc123 committed
1020
1021
1022
1023
1024
      - binary_linux_conda:
          cu_version: cu110
          name: binary_linux_conda_py3.7_cu110
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda110
1025
1026
1027
1028
      - binary_linux_conda:
          cu_version: cpu
          name: binary_linux_conda_py3.8_cpu
          python_version: '3.8'
1029
          wheel_docker_image: pytorch/manylinux-cuda102
1030
1031
1032
1033
1034
1035
1036
1037
1038
      - 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'
1039
1040
1041
1042
1043
1044
          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
peterjc123's avatar
peterjc123 committed
1045
1046
1047
1048
1049
      - binary_linux_conda:
          cu_version: cu110
          name: binary_linux_conda_py3.8_cu110
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda110
Edward Z. Yang's avatar
Edward Z. Yang committed
1050
      - binary_macos_conda:
1051
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1052
          name: binary_macos_conda_py3.6_cpu
1053
          python_version: '3.6'
1054
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1055
      - binary_macos_conda:
1056
          cu_version: cpu
Edward Z. Yang's avatar
Edward Z. Yang committed
1057
          name: binary_macos_conda_py3.7_cpu
1058
          python_version: '3.7'
1059
          wheel_docker_image: pytorch/manylinux-cuda102
1060
1061
1062
1063
      - binary_macos_conda:
          cu_version: cpu
          name: binary_macos_conda_py3.8_cpu
          python_version: '3.8'
1064
          wheel_docker_image: pytorch/manylinux-cuda102
1065
      - binary_win_conda:
1066
1067
1068
1069
          cu_version: cpu
          filters:
            branches:
              only: master
1070
1071
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1072
1073
          name: binary_win_conda_py3.6_cpu
          python_version: '3.6'
1074
      - binary_win_conda:
1075
          cu_version: cu101
1076
1077
1078
          filters:
            branches:
              only: master
1079
1080
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1081
1082
          name: binary_win_conda_py3.6_cu101
          python_version: '3.6'
1083
      - binary_win_conda:
1084
          cu_version: cu102
1085
1086
1087
          filters:
            branches:
              only: master
1088
1089
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1090
1091
          name: binary_win_conda_py3.6_cu102
          python_version: '3.6'
peterjc123's avatar
peterjc123 committed
1092
1093
1094
1095
1096
1097
1098
1099
1100
      - binary_win_conda:
          cu_version: cu110
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: binary_win_conda_py3.6_cu110
          python_version: '3.6'
1101
      - binary_win_conda:
1102
1103
1104
1105
          cu_version: cpu
          filters:
            branches:
              only: master
1106
1107
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1108
1109
          name: binary_win_conda_py3.7_cpu
          python_version: '3.7'
1110
      - binary_win_conda:
1111
          cu_version: cu101
1112
1113
1114
          filters:
            branches:
              only: master
1115
1116
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1117
1118
          name: binary_win_conda_py3.7_cu101
          python_version: '3.7'
1119
      - binary_win_conda:
1120
          cu_version: cu102
1121
1122
1123
          filters:
            branches:
              only: master
1124
1125
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1126
1127
          name: binary_win_conda_py3.7_cu102
          python_version: '3.7'
peterjc123's avatar
peterjc123 committed
1128
1129
1130
1131
1132
1133
1134
1135
1136
      - binary_win_conda:
          cu_version: cu110
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: binary_win_conda_py3.7_cu110
          python_version: '3.7'
1137
      - binary_win_conda:
1138
1139
1140
          cu_version: cpu
          name: binary_win_conda_py3.8_cpu
          python_version: '3.8'
1141
      - binary_win_conda:
1142
          cu_version: cu101
1143
1144
1145
          filters:
            branches:
              only: master
1146
1147
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1148
1149
          name: binary_win_conda_py3.8_cu101
          python_version: '3.8'
1150
      - binary_win_conda:
1151
          cu_version: cu102
peterjc123's avatar
peterjc123 committed
1152
1153
1154
1155
1156
          filters:
            branches:
              only: master
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1157
1158
          name: binary_win_conda_py3.8_cu102
          python_version: '3.8'
peterjc123's avatar
peterjc123 committed
1159
1160
1161
1162
      - binary_win_conda:
          cu_version: cu110
          name: binary_win_conda_py3.8_cu110
          python_version: '3.8'
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
      - build_docs:
          name: build_docs
          python_version: '3.7'
          requires:
          - binary_linux_wheel_py3.7_cpu
      - upload_docs:
          context: org-member
          filters:
            branches:
              only:
              - nightly
          name: upload_docs
          python_version: '3.7'
          requires:
          - build_docs
1178
      - python_lint
1179
      - python_type_check
1180
      - docstring_parameters_sync
1181
      - clang_format
Francisco Massa's avatar
Francisco Massa committed
1182
      - torchhub_test
1183
      - torch_onnx_test
Edward Z. Yang's avatar
Edward Z. Yang committed
1184

1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
  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'
Francisco Massa's avatar
Francisco Massa committed
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
      - unittest_macos_cpu:
          cu_version: cpu
          name: unittest_macos_cpu_py3.6
          python_version: '3.6'
      - unittest_macos_cpu:
          cu_version: cpu
          name: unittest_macos_cpu_py3.7
          python_version: '3.7'
      - unittest_macos_cpu:
          cu_version: cpu
          name: unittest_macos_cpu_py3.8
          python_version: '3.8'
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282

  cmake:
    jobs:
      - cmake_linux_cpu:
          cu_version: cpu
          name: cmake_linux_cpu
          python_version: '3.8'
      - cmake_linux_gpu:
          cu_version: cu101
          name: cmake_linux_gpu
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda101
      - cmake_windows_cpu:
          cu_version: cpu
          name: cmake_windows_cpu
          python_version: '3.8'
1283
1284
1285
1286
      - cmake_windows_gpu:
          cu_version: cu101
          name: cmake_windows_gpu
          python_version: '3.8'
1287
1288
1289
1290
1291
      - cmake_macos_cpu:
          cu_version: cpu
          name: cmake_macos_cpu
          python_version: '3.8'

Edward Z. Yang's avatar
Edward Z. Yang committed
1292
1293
1294
  nightly:
    jobs:
      - circleci_consistency
1295
      - python_lint
1296
      - python_type_check
1297
      - docstring_parameters_sync
1298
      - clang_format
Francisco Massa's avatar
Francisco Massa committed
1299
      - torchhub_test
1300
      - torch_onnx_test
1301
      - binary_linux_wheel:
1302
          cu_version: cpu
1303
1304
1305
          filters:
            branches:
              only: nightly
1306
1307
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1308
          name: nightly_binary_linux_wheel_py3.6_cpu
1309
          python_version: '3.6'
1310
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1311
1312
      - binary_wheel_upload:
          context: org-member
1313
1314
1315
          filters:
            branches:
              only: nightly
1316
1317
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1318
          name: nightly_binary_linux_wheel_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1319
          requires:
1320
1321
          - nightly_binary_linux_wheel_py3.6_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1322
1323
1324
1325
1326
1327
1328
1329
1330
      - 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
1331
      - binary_linux_wheel:
1332
          cu_version: cu92
1333
1334
1335
          filters:
            branches:
              only: nightly
1336
1337
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1338
          name: nightly_binary_linux_wheel_py3.6_cu92
1339
          python_version: '3.6'
1340
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
1341
1342
      - binary_wheel_upload:
          context: org-member
1343
1344
1345
          filters:
            branches:
              only: nightly
1346
1347
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1348
          name: nightly_binary_linux_wheel_py3.6_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1349
          requires:
1350
1351
          - nightly_binary_linux_wheel_py3.6_cu92
          subfolder: cu92/
guyang3532's avatar
guyang3532 committed
1352
1353
1354
1355
1356
1357
1358
1359
1360
      - 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
1361
      - binary_linux_wheel:
1362
          cu_version: cu101
1363
1364
1365
          filters:
            branches:
              only: nightly
1366
1367
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1368
          name: nightly_binary_linux_wheel_py3.6_cu101
1369
          python_version: '3.6'
1370
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1371
1372
      - binary_wheel_upload:
          context: org-member
1373
1374
1375
          filters:
            branches:
              only: nightly
1376
1377
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1378
          name: nightly_binary_linux_wheel_py3.6_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1379
          requires:
1380
1381
          - nightly_binary_linux_wheel_py3.6_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1382
1383
1384
1385
1386
1387
1388
1389
1390
      - 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
1391
      - binary_linux_wheel:
1392
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1393
1394
1395
          filters:
            branches:
              only: nightly
1396
1397
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1398
          name: nightly_binary_linux_wheel_py3.6_cu102
Francisco Massa's avatar
Francisco Massa committed
1399
          python_version: '3.6'
1400
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1401
1402
1403
1404
1405
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1406
1407
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1408
          name: nightly_binary_linux_wheel_py3.6_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1409
          requires:
1410
1411
          - nightly_binary_linux_wheel_py3.6_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1412
1413
1414
1415
1416
1417
1418
1419
1420
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.6_cu102_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_linux_wheel_py3.6_cu102_upload
peterjc123's avatar
peterjc123 committed
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
      - binary_linux_wheel:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_wheel_py3.6_cu110
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda110
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_wheel_py3.6_cu110_upload
          requires:
          - nightly_binary_linux_wheel_py3.6_cu110
          subfolder: cu110/
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.6_cu110_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_linux_wheel_py3.6_cu110_upload
1451
      - binary_linux_wheel:
1452
          cu_version: cpu
1453
1454
1455
          filters:
            branches:
              only: nightly
1456
1457
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1458
          name: nightly_binary_linux_wheel_py3.7_cpu
1459
          python_version: '3.7'
1460
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1461
1462
      - binary_wheel_upload:
          context: org-member
1463
1464
1465
          filters:
            branches:
              only: nightly
1466
1467
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1468
          name: nightly_binary_linux_wheel_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1469
          requires:
1470
1471
          - nightly_binary_linux_wheel_py3.7_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1472
1473
1474
1475
1476
1477
1478
1479
1480
      - 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
1481
      - binary_linux_wheel:
1482
          cu_version: cu92
1483
1484
1485
          filters:
            branches:
              only: nightly
1486
1487
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1488
          name: nightly_binary_linux_wheel_py3.7_cu92
1489
          python_version: '3.7'
1490
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
1491
1492
      - binary_wheel_upload:
          context: org-member
1493
1494
1495
          filters:
            branches:
              only: nightly
1496
1497
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1498
          name: nightly_binary_linux_wheel_py3.7_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1499
          requires:
1500
1501
          - nightly_binary_linux_wheel_py3.7_cu92
          subfolder: cu92/
guyang3532's avatar
guyang3532 committed
1502
1503
1504
1505
1506
1507
1508
1509
1510
      - 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
1511
      - binary_linux_wheel:
1512
          cu_version: cu101
1513
1514
1515
          filters:
            branches:
              only: nightly
1516
1517
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1518
          name: nightly_binary_linux_wheel_py3.7_cu101
1519
          python_version: '3.7'
1520
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
1521
1522
      - binary_wheel_upload:
          context: org-member
1523
1524
1525
          filters:
            branches:
              only: nightly
1526
1527
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1528
          name: nightly_binary_linux_wheel_py3.7_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1529
          requires:
1530
1531
          - nightly_binary_linux_wheel_py3.7_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1532
1533
1534
1535
1536
1537
1538
1539
1540
      - 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
1541
      - binary_linux_wheel:
1542
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
1543
1544
1545
          filters:
            branches:
              only: nightly
1546
1547
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1548
          name: nightly_binary_linux_wheel_py3.7_cu102
Francisco Massa's avatar
Francisco Massa committed
1549
          python_version: '3.7'
1550
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
1551
1552
1553
1554
1555
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1556
1557
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1558
          name: nightly_binary_linux_wheel_py3.7_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
1559
          requires:
1560
1561
          - nightly_binary_linux_wheel_py3.7_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1562
1563
1564
1565
1566
1567
1568
1569
1570
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.7_cu102_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_linux_wheel_py3.7_cu102_upload
peterjc123's avatar
peterjc123 committed
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
      - binary_linux_wheel:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_wheel_py3.7_cu110
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda110
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_wheel_py3.7_cu110_upload
          requires:
          - nightly_binary_linux_wheel_py3.7_cu110
          subfolder: cu110/
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.7_cu110_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_linux_wheel_py3.7_cu110_upload
1601
1602
1603
1604
1605
      - binary_linux_wheel:
          cu_version: cpu
          filters:
            branches:
              only: nightly
1606
1607
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1608
1609
          name: nightly_binary_linux_wheel_py3.8_cpu
          python_version: '3.8'
1610
          wheel_docker_image: pytorch/manylinux-cuda102
1611
1612
1613
1614
1615
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1616
1617
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1618
1619
1620
1621
          name: nightly_binary_linux_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_linux_wheel_py3.8_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1622
1623
1624
1625
1626
1627
1628
1629
1630
      - 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
1631
1632
1633
1634
1635
      - binary_linux_wheel:
          cu_version: cu92
          filters:
            branches:
              only: nightly
1636
1637
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1638
1639
1640
1641
1642
1643
1644
1645
          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
1646
1647
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1648
1649
1650
1651
          name: nightly_binary_linux_wheel_py3.8_cu92_upload
          requires:
          - nightly_binary_linux_wheel_py3.8_cu92
          subfolder: cu92/
guyang3532's avatar
guyang3532 committed
1652
1653
1654
1655
1656
1657
1658
1659
1660
      - 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
1661
      - binary_linux_wheel:
1662
          cu_version: cu101
1663
1664
1665
          filters:
            branches:
              only: nightly
1666
1667
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1668
          name: nightly_binary_linux_wheel_py3.8_cu101
1669
          python_version: '3.8'
1670
          wheel_docker_image: pytorch/manylinux-cuda101
1671
1672
1673
1674
1675
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1676
1677
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1678
          name: nightly_binary_linux_wheel_py3.8_cu101_upload
1679
          requires:
1680
1681
          - nightly_binary_linux_wheel_py3.8_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1682
1683
1684
1685
1686
1687
1688
1689
1690
      - 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
1691
      - binary_linux_wheel:
1692
          cu_version: cu102
1693
1694
1695
          filters:
            branches:
              only: nightly
1696
1697
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1698
          name: nightly_binary_linux_wheel_py3.8_cu102
1699
          python_version: '3.8'
1700
          wheel_docker_image: pytorch/manylinux-cuda102
1701
1702
1703
1704
1705
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1706
1707
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1708
          name: nightly_binary_linux_wheel_py3.8_cu102_upload
1709
          requires:
1710
1711
          - nightly_binary_linux_wheel_py3.8_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1712
1713
1714
1715
1716
1717
1718
1719
1720
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.8_cu102_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_linux_wheel_py3.8_cu102_upload
peterjc123's avatar
peterjc123 committed
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
      - binary_linux_wheel:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_wheel_py3.8_cu110
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda110
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_wheel_py3.8_cu110_upload
          requires:
          - nightly_binary_linux_wheel_py3.8_cu110
          subfolder: cu110/
      - smoke_test_linux_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_wheel_py3.8_cu110_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_linux_wheel_py3.8_cu110_upload
1751
      - binary_macos_wheel:
1752
          cu_version: cpu
1753
1754
1755
          filters:
            branches:
              only: nightly
1756
1757
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1758
          name: nightly_binary_macos_wheel_py3.6_cpu
1759
          python_version: '3.6'
1760
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1761
1762
      - binary_wheel_upload:
          context: org-member
1763
1764
1765
          filters:
            branches:
              only: nightly
1766
1767
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1768
          name: nightly_binary_macos_wheel_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1769
          requires:
1770
1771
          - nightly_binary_macos_wheel_py3.6_cpu
          subfolder: ''
1772
      - binary_macos_wheel:
1773
          cu_version: cpu
1774
1775
1776
          filters:
            branches:
              only: nightly
1777
1778
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
1779
          name: nightly_binary_macos_wheel_py3.7_cpu
1780
          python_version: '3.7'
1781
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
1782
1783
      - binary_wheel_upload:
          context: org-member
1784
1785
1786
          filters:
            branches:
              only: nightly
1787
1788
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1789
          name: nightly_binary_macos_wheel_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
1790
          requires:
1791
1792
          - nightly_binary_macos_wheel_py3.7_cpu
          subfolder: ''
1793
1794
1795
1796
1797
      - binary_macos_wheel:
          cu_version: cpu
          filters:
            branches:
              only: nightly
1798
1799
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1800
1801
          name: nightly_binary_macos_wheel_py3.8_cpu
          python_version: '3.8'
1802
          wheel_docker_image: pytorch/manylinux-cuda102
1803
1804
1805
1806
1807
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1808
1809
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1810
1811
1812
1813
          name: nightly_binary_macos_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_macos_wheel_py3.8_cpu
          subfolder: ''
1814
      - binary_win_wheel:
1815
1816
1817
1818
          cu_version: cpu
          filters:
            branches:
              only: nightly
1819
1820
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1821
1822
1823
1824
1825
1826
1827
          name: nightly_binary_win_wheel_py3.6_cpu
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1828
1829
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1830
1831
1832
1833
          name: nightly_binary_win_wheel_py3.6_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1834
1835
1836
1837
1838
1839
1840
1841
1842
      - 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
1843
      - binary_win_wheel:
1844
          cu_version: cu101
1845
1846
1847
          filters:
            branches:
              only: nightly
1848
1849
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1850
1851
1852
1853
1854
1855
1856
          name: nightly_binary_win_wheel_py3.6_cu101
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1857
1858
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1859
1860
1861
1862
          name: nightly_binary_win_wheel_py3.6_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1863
1864
1865
1866
1867
1868
1869
1870
1871
      - 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
1872
      - binary_win_wheel:
1873
          cu_version: cu102
1874
1875
1876
          filters:
            branches:
              only: nightly
1877
1878
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1879
1880
1881
1882
1883
1884
1885
          name: nightly_binary_win_wheel_py3.6_cu102
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1886
1887
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1888
1889
1890
1891
          name: nightly_binary_win_wheel_py3.6_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
1892
1893
1894
1895
1896
1897
1898
1899
1900
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.6_cu102_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_win_wheel_py3.6_cu102_upload
peterjc123's avatar
peterjc123 committed
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
      - binary_win_wheel:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.6_cu110
          python_version: '3.6'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.6_cu110_upload
          requires:
          - nightly_binary_win_wheel_py3.6_cu110
          subfolder: cu110/
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.6_cu110_smoke_test_pip
          python_version: '3.6'
          requires:
          - nightly_binary_win_wheel_py3.6_cu110_upload
1930
      - binary_win_wheel:
1931
1932
1933
1934
          cu_version: cpu
          filters:
            branches:
              only: nightly
1935
1936
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1937
1938
1939
1940
1941
1942
1943
          name: nightly_binary_win_wheel_py3.7_cpu
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1944
1945
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1946
1947
1948
1949
          name: nightly_binary_win_wheel_py3.7_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
1950
1951
1952
1953
1954
1955
1956
1957
1958
      - 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
1959
      - binary_win_wheel:
1960
          cu_version: cu101
1961
1962
1963
          filters:
            branches:
              only: nightly
1964
1965
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1966
1967
1968
1969
1970
1971
1972
          name: nightly_binary_win_wheel_py3.7_cu101
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
1973
1974
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1975
1976
1977
1978
          name: nightly_binary_win_wheel_py3.7_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
1979
1980
1981
1982
1983
1984
1985
1986
1987
      - 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
1988
      - binary_win_wheel:
1989
          cu_version: cu102
1990
1991
1992
          filters:
            branches:
              only: nightly
1993
1994
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
1995
1996
1997
1998
1999
2000
2001
          name: nightly_binary_win_wheel_py3.7_cu102
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2002
2003
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2004
2005
2006
2007
          name: nightly_binary_win_wheel_py3.7_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
2008
2009
2010
2011
2012
2013
2014
2015
2016
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.7_cu102_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_win_wheel_py3.7_cu102_upload
peterjc123's avatar
peterjc123 committed
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
      - binary_win_wheel:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.7_cu110
          python_version: '3.7'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.7_cu110_upload
          requires:
          - nightly_binary_win_wheel_py3.7_cu110
          subfolder: cu110/
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.7_cu110_smoke_test_pip
          python_version: '3.7'
          requires:
          - nightly_binary_win_wheel_py3.7_cu110_upload
2046
      - binary_win_wheel:
2047
2048
2049
2050
          cu_version: cpu
          filters:
            branches:
              only: nightly
2051
2052
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2053
2054
2055
2056
2057
2058
2059
          name: nightly_binary_win_wheel_py3.8_cpu
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2060
2061
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2062
2063
2064
2065
          name: nightly_binary_win_wheel_py3.8_cpu_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cpu
          subfolder: cpu/
guyang3532's avatar
guyang3532 committed
2066
2067
2068
2069
2070
2071
2072
2073
2074
      - 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
2075
      - binary_win_wheel:
2076
          cu_version: cu101
2077
2078
2079
          filters:
            branches:
              only: nightly
2080
2081
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2082
2083
2084
2085
2086
2087
2088
          name: nightly_binary_win_wheel_py3.8_cu101
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2089
2090
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2091
2092
2093
2094
          name: nightly_binary_win_wheel_py3.8_cu101_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu101
          subfolder: cu101/
guyang3532's avatar
guyang3532 committed
2095
2096
2097
2098
2099
2100
2101
2102
2103
      - 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
2104
      - binary_win_wheel:
2105
          cu_version: cu102
2106
2107
2108
          filters:
            branches:
              only: nightly
2109
2110
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2111
2112
2113
2114
2115
2116
2117
          name: nightly_binary_win_wheel_py3.8_cu102
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2118
2119
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2120
2121
2122
2123
          name: nightly_binary_win_wheel_py3.8_cu102_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu102
          subfolder: cu102/
guyang3532's avatar
guyang3532 committed
2124
2125
2126
2127
2128
2129
2130
2131
2132
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.8_cu102_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_win_wheel_py3.8_cu102_upload
peterjc123's avatar
peterjc123 committed
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
      - binary_win_wheel:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.8_cu110
          python_version: '3.8'
      - binary_wheel_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_wheel_py3.8_cu110_upload
          requires:
          - nightly_binary_win_wheel_py3.8_cu110
          subfolder: cu110/
      - smoke_test_win_pip:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_wheel_py3.8_cu110_smoke_test_pip
          python_version: '3.8'
          requires:
          - nightly_binary_win_wheel_py3.8_cu110_upload
2162
      - binary_linux_conda:
2163
          cu_version: cpu
2164
2165
2166
          filters:
            branches:
              only: nightly
2167
2168
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
2169
          name: nightly_binary_linux_conda_py3.6_cpu
2170
          python_version: '3.6'
2171
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
2172
2173
      - binary_conda_upload:
          context: org-member
2174
2175
2176
          filters:
            branches:
              only: nightly
2177
2178
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2179
          name: nightly_binary_linux_conda_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2180
          requires:
2181
          - nightly_binary_linux_conda_py3.6_cpu
guyang3532's avatar
guyang3532 committed
2182
2183
2184
2185
2186
2187
2188
2189
2190
      - 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
2191
      - binary_linux_conda:
2192
          cu_version: cu92
2193
2194
2195
          filters:
            branches:
              only: nightly
2196
2197
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
2198
          name: nightly_binary_linux_conda_py3.6_cu92
2199
          python_version: '3.6'
2200
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
2201
2202
      - binary_conda_upload:
          context: org-member
2203
2204
2205
          filters:
            branches:
              only: nightly
2206
2207
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2208
          name: nightly_binary_linux_conda_py3.6_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2209
          requires:
2210
          - nightly_binary_linux_conda_py3.6_cu92
guyang3532's avatar
guyang3532 committed
2211
2212
2213
2214
2215
2216
2217
2218
2219
      - 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
2220
      - binary_linux_conda:
2221
          cu_version: cu101
2222
2223
2224
          filters:
            branches:
              only: nightly
2225
2226
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2227
          name: nightly_binary_linux_conda_py3.6_cu101
2228
          python_version: '3.6'
2229
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
2230
2231
      - binary_conda_upload:
          context: org-member
2232
2233
2234
          filters:
            branches:
              only: nightly
2235
2236
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2237
          name: nightly_binary_linux_conda_py3.6_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2238
          requires:
2239
          - nightly_binary_linux_conda_py3.6_cu101
guyang3532's avatar
guyang3532 committed
2240
2241
2242
2243
2244
2245
2246
2247
2248
      - 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
2249
      - binary_linux_conda:
2250
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
2251
2252
2253
          filters:
            branches:
              only: nightly
2254
2255
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2256
          name: nightly_binary_linux_conda_py3.6_cu102
Francisco Massa's avatar
Francisco Massa committed
2257
          python_version: '3.6'
2258
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
2259
2260
2261
2262
2263
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2264
2265
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2266
          name: nightly_binary_linux_conda_py3.6_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
2267
          requires:
2268
          - nightly_binary_linux_conda_py3.6_cu102
guyang3532's avatar
guyang3532 committed
2269
2270
2271
2272
2273
2274
2275
2276
2277
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.6_cu102_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_linux_conda_py3.6_cu102_upload
peterjc123's avatar
peterjc123 committed
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
      - binary_linux_conda:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.6_cu110
          python_version: '3.6'
          wheel_docker_image: pytorch/manylinux-cuda110
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.6_cu110_upload
          requires:
          - nightly_binary_linux_conda_py3.6_cu110
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.6_cu110_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_linux_conda_py3.6_cu110_upload
2307
      - binary_linux_conda:
2308
          cu_version: cpu
2309
2310
2311
          filters:
            branches:
              only: nightly
2312
2313
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
2314
          name: nightly_binary_linux_conda_py3.7_cpu
2315
          python_version: '3.7'
2316
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
2317
2318
      - binary_conda_upload:
          context: org-member
2319
2320
2321
          filters:
            branches:
              only: nightly
2322
2323
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2324
          name: nightly_binary_linux_conda_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2325
          requires:
2326
          - nightly_binary_linux_conda_py3.7_cpu
guyang3532's avatar
guyang3532 committed
2327
2328
2329
2330
2331
2332
2333
2334
2335
      - 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
2336
      - binary_linux_conda:
2337
          cu_version: cu92
2338
2339
2340
          filters:
            branches:
              only: nightly
2341
2342
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
2343
          name: nightly_binary_linux_conda_py3.7_cu92
2344
          python_version: '3.7'
2345
          wheel_docker_image: pytorch/manylinux-cuda92
Edward Z. Yang's avatar
Edward Z. Yang committed
2346
2347
      - binary_conda_upload:
          context: org-member
2348
2349
2350
          filters:
            branches:
              only: nightly
2351
2352
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2353
          name: nightly_binary_linux_conda_py3.7_cu92_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2354
          requires:
2355
          - nightly_binary_linux_conda_py3.7_cu92
guyang3532's avatar
guyang3532 committed
2356
2357
2358
2359
2360
2361
2362
2363
2364
      - 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
2365
      - binary_linux_conda:
2366
          cu_version: cu101
2367
2368
2369
          filters:
            branches:
              only: nightly
2370
2371
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2372
          name: nightly_binary_linux_conda_py3.7_cu101
2373
          python_version: '3.7'
2374
          wheel_docker_image: pytorch/manylinux-cuda101
Edward Z. Yang's avatar
Edward Z. Yang committed
2375
2376
      - binary_conda_upload:
          context: org-member
2377
2378
2379
          filters:
            branches:
              only: nightly
2380
2381
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2382
          name: nightly_binary_linux_conda_py3.7_cu101_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2383
          requires:
2384
          - nightly_binary_linux_conda_py3.7_cu101
guyang3532's avatar
guyang3532 committed
2385
2386
2387
2388
2389
2390
2391
2392
2393
      - 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
2394
      - binary_linux_conda:
2395
          cu_version: cu102
Francisco Massa's avatar
Francisco Massa committed
2396
2397
2398
          filters:
            branches:
              only: nightly
2399
2400
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2401
          name: nightly_binary_linux_conda_py3.7_cu102
Francisco Massa's avatar
Francisco Massa committed
2402
          python_version: '3.7'
2403
          wheel_docker_image: pytorch/manylinux-cuda102
Francisco Massa's avatar
Francisco Massa committed
2404
2405
2406
2407
2408
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2409
2410
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2411
          name: nightly_binary_linux_conda_py3.7_cu102_upload
Francisco Massa's avatar
Francisco Massa committed
2412
          requires:
2413
          - nightly_binary_linux_conda_py3.7_cu102
guyang3532's avatar
guyang3532 committed
2414
2415
2416
2417
2418
2419
2420
2421
2422
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.7_cu102_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_linux_conda_py3.7_cu102_upload
peterjc123's avatar
peterjc123 committed
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
      - binary_linux_conda:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.7_cu110
          python_version: '3.7'
          wheel_docker_image: pytorch/manylinux-cuda110
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.7_cu110_upload
          requires:
          - nightly_binary_linux_conda_py3.7_cu110
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.7_cu110_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_linux_conda_py3.7_cu110_upload
2452
2453
2454
2455
2456
      - binary_linux_conda:
          cu_version: cpu
          filters:
            branches:
              only: nightly
2457
2458
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2459
2460
          name: nightly_binary_linux_conda_py3.8_cpu
          python_version: '3.8'
2461
          wheel_docker_image: pytorch/manylinux-cuda102
2462
2463
2464
2465
2466
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2467
2468
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2469
2470
2471
          name: nightly_binary_linux_conda_py3.8_cpu_upload
          requires:
          - nightly_binary_linux_conda_py3.8_cpu
guyang3532's avatar
guyang3532 committed
2472
2473
2474
2475
2476
2477
2478
2479
2480
      - 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
2481
2482
2483
2484
2485
      - binary_linux_conda:
          cu_version: cu92
          filters:
            branches:
              only: nightly
2486
2487
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2488
2489
2490
2491
2492
2493
2494
2495
          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
2496
2497
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2498
2499
2500
          name: nightly_binary_linux_conda_py3.8_cu92_upload
          requires:
          - nightly_binary_linux_conda_py3.8_cu92
guyang3532's avatar
guyang3532 committed
2501
2502
2503
2504
2505
2506
2507
2508
2509
      - 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
2510
      - binary_linux_conda:
2511
          cu_version: cu101
2512
2513
2514
          filters:
            branches:
              only: nightly
2515
2516
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2517
          name: nightly_binary_linux_conda_py3.8_cu101
2518
          python_version: '3.8'
2519
          wheel_docker_image: pytorch/manylinux-cuda101
2520
2521
2522
2523
2524
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2525
2526
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2527
          name: nightly_binary_linux_conda_py3.8_cu101_upload
2528
          requires:
2529
          - nightly_binary_linux_conda_py3.8_cu101
guyang3532's avatar
guyang3532 committed
2530
2531
2532
2533
2534
2535
2536
2537
2538
      - 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
2539
      - binary_linux_conda:
2540
          cu_version: cu102
2541
2542
2543
          filters:
            branches:
              only: nightly
2544
2545
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2546
          name: nightly_binary_linux_conda_py3.8_cu102
2547
          python_version: '3.8'
2548
          wheel_docker_image: pytorch/manylinux-cuda102
2549
2550
2551
2552
2553
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2554
2555
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2556
          name: nightly_binary_linux_conda_py3.8_cu102_upload
2557
          requires:
2558
          - nightly_binary_linux_conda_py3.8_cu102
guyang3532's avatar
guyang3532 committed
2559
2560
2561
2562
2563
2564
2565
2566
2567
      - 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
peterjc123's avatar
peterjc123 committed
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
      - binary_linux_conda:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.8_cu110
          python_version: '3.8'
          wheel_docker_image: pytorch/manylinux-cuda110
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_linux_conda_py3.8_cu110_upload
          requires:
          - nightly_binary_linux_conda_py3.8_cu110
      - smoke_test_linux_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_linux_conda_py3.8_cu110_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_linux_conda_py3.8_cu110_upload
2597
      - binary_macos_conda:
2598
          cu_version: cpu
2599
2600
2601
          filters:
            branches:
              only: nightly
2602
2603
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
2604
          name: nightly_binary_macos_conda_py3.6_cpu
2605
          python_version: '3.6'
2606
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
2607
2608
      - binary_conda_upload:
          context: org-member
2609
2610
2611
          filters:
            branches:
              only: nightly
2612
2613
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2614
          name: nightly_binary_macos_conda_py3.6_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2615
          requires:
2616
          - nightly_binary_macos_conda_py3.6_cpu
2617
      - binary_macos_conda:
2618
          cu_version: cpu
2619
2620
2621
          filters:
            branches:
              only: nightly
2622
2623
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
Edward Z. Yang's avatar
Edward Z. Yang committed
2624
          name: nightly_binary_macos_conda_py3.7_cpu
2625
          python_version: '3.7'
2626
          wheel_docker_image: pytorch/manylinux-cuda102
Edward Z. Yang's avatar
Edward Z. Yang committed
2627
2628
      - binary_conda_upload:
          context: org-member
2629
2630
2631
          filters:
            branches:
              only: nightly
2632
2633
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2634
          name: nightly_binary_macos_conda_py3.7_cpu_upload
Edward Z. Yang's avatar
Edward Z. Yang committed
2635
          requires:
2636
2637
2638
2639
2640
2641
          - nightly_binary_macos_conda_py3.7_cpu
      - binary_macos_conda:
          cu_version: cpu
          filters:
            branches:
              only: nightly
2642
2643
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2644
2645
          name: nightly_binary_macos_conda_py3.8_cpu
          python_version: '3.8'
2646
          wheel_docker_image: pytorch/manylinux-cuda102
2647
2648
2649
2650
2651
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2652
2653
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2654
2655
          name: nightly_binary_macos_conda_py3.8_cpu_upload
          requires:
2656
          - nightly_binary_macos_conda_py3.8_cpu
2657
      - binary_win_conda:
2658
2659
2660
2661
          cu_version: cpu
          filters:
            branches:
              only: nightly
2662
2663
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2664
2665
2666
2667
2668
2669
2670
          name: nightly_binary_win_conda_py3.6_cpu
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2671
2672
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2673
2674
2675
          name: nightly_binary_win_conda_py3.6_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.6_cpu
guyang3532's avatar
guyang3532 committed
2676
2677
2678
2679
2680
2681
2682
2683
2684
      - 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
2685
      - binary_win_conda:
2686
          cu_version: cu101
2687
2688
2689
          filters:
            branches:
              only: nightly
2690
2691
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2692
2693
2694
2695
2696
2697
2698
          name: nightly_binary_win_conda_py3.6_cu101
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2699
2700
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2701
2702
2703
          name: nightly_binary_win_conda_py3.6_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu101
guyang3532's avatar
guyang3532 committed
2704
2705
2706
2707
2708
2709
2710
2711
2712
      - 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
2713
      - binary_win_conda:
2714
          cu_version: cu102
2715
2716
2717
          filters:
            branches:
              only: nightly
2718
2719
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2720
2721
2722
2723
2724
2725
2726
          name: nightly_binary_win_conda_py3.6_cu102
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2727
2728
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2729
2730
2731
          name: nightly_binary_win_conda_py3.6_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu102
guyang3532's avatar
guyang3532 committed
2732
2733
2734
2735
2736
2737
2738
2739
2740
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.6_cu102_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_win_conda_py3.6_cu102_upload
peterjc123's avatar
peterjc123 committed
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
      - binary_win_conda:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.6_cu110
          python_version: '3.6'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.6_cu110_upload
          requires:
          - nightly_binary_win_conda_py3.6_cu110
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.6_cu110_smoke_test_conda
          python_version: '3.6'
          requires:
          - nightly_binary_win_conda_py3.6_cu110_upload
2769
      - binary_win_conda:
2770
2771
2772
2773
          cu_version: cpu
          filters:
            branches:
              only: nightly
2774
2775
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2776
2777
2778
2779
2780
2781
2782
          name: nightly_binary_win_conda_py3.7_cpu
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2783
2784
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2785
2786
2787
          name: nightly_binary_win_conda_py3.7_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.7_cpu
guyang3532's avatar
guyang3532 committed
2788
2789
2790
2791
2792
2793
2794
2795
2796
      - 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
2797
      - binary_win_conda:
2798
          cu_version: cu101
2799
2800
2801
          filters:
            branches:
              only: nightly
2802
2803
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2804
2805
2806
2807
2808
2809
2810
          name: nightly_binary_win_conda_py3.7_cu101
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2811
2812
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2813
2814
2815
          name: nightly_binary_win_conda_py3.7_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu101
guyang3532's avatar
guyang3532 committed
2816
2817
2818
2819
2820
2821
2822
2823
2824
      - 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
2825
      - binary_win_conda:
2826
          cu_version: cu102
2827
2828
2829
          filters:
            branches:
              only: nightly
2830
2831
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2832
2833
2834
2835
2836
2837
2838
          name: nightly_binary_win_conda_py3.7_cu102
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2839
2840
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2841
2842
2843
          name: nightly_binary_win_conda_py3.7_cu102_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu102
guyang3532's avatar
guyang3532 committed
2844
2845
2846
2847
2848
2849
2850
2851
2852
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.7_cu102_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_win_conda_py3.7_cu102_upload
peterjc123's avatar
peterjc123 committed
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
      - binary_win_conda:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.7_cu110
          python_version: '3.7'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.7_cu110_upload
          requires:
          - nightly_binary_win_conda_py3.7_cu110
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.7_cu110_smoke_test_conda
          python_version: '3.7'
          requires:
          - nightly_binary_win_conda_py3.7_cu110_upload
2881
      - binary_win_conda:
2882
2883
2884
2885
          cu_version: cpu
          filters:
            branches:
              only: nightly
2886
2887
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2888
2889
2890
2891
2892
2893
2894
          name: nightly_binary_win_conda_py3.8_cpu
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2895
2896
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2897
2898
2899
          name: nightly_binary_win_conda_py3.8_cpu_upload
          requires:
          - nightly_binary_win_conda_py3.8_cpu
guyang3532's avatar
guyang3532 committed
2900
2901
2902
2903
2904
2905
2906
2907
2908
      - 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
2909
      - binary_win_conda:
2910
          cu_version: cu101
2911
2912
2913
          filters:
            branches:
              only: nightly
2914
2915
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2916
2917
2918
2919
2920
2921
2922
          name: nightly_binary_win_conda_py3.8_cu101
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2923
2924
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2925
2926
2927
          name: nightly_binary_win_conda_py3.8_cu101_upload
          requires:
          - nightly_binary_win_conda_py3.8_cu101
guyang3532's avatar
guyang3532 committed
2928
2929
2930
2931
2932
2933
2934
2935
2936
      - 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
2937
      - binary_win_conda:
2938
          cu_version: cu102
2939
2940
2941
          filters:
            branches:
              only: nightly
2942
2943
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2944
2945
2946
2947
2948
2949
2950
          name: nightly_binary_win_conda_py3.8_cu102
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
2951
2952
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
2953
2954
          name: nightly_binary_win_conda_py3.8_cu102_upload
          requires:
guyang3532's avatar
guyang3532 committed
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
          - nightly_binary_win_conda_py3.8_cu102
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.8_cu102_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_win_conda_py3.8_cu102_upload
peterjc123's avatar
peterjc123 committed
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
      - binary_win_conda:
          cu_version: cu110
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.8_cu110
          python_version: '3.8'
      - binary_conda_upload:
          context: org-member
          filters:
            branches:
              only: nightly
            tags:
              only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
          name: nightly_binary_win_conda_py3.8_cu110_upload
          requires:
          - nightly_binary_win_conda_py3.8_cu110
      - smoke_test_win_conda:
          filters:
            branches:
              only:
              - nightly
          name: nightly_binary_win_conda_py3.8_cu110_smoke_test_conda
          python_version: '3.8'
          requires:
          - nightly_binary_win_conda_py3.8_cu110_upload
guyang3532's avatar
guyang3532 committed
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
  docker_build:
    triggers:
      - schedule:
          cron: "0 10 * * 0"
          filters:
            branches:
              only:
                - master
    jobs:
      - smoke_test_docker_image_build:
3003
          context: org-member