config.yml 94.8 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
  clang_format:
    docker:
      - image: circleci/python:3.7
    steps:
      - checkout
      - run:
          command: |
130
131
132
133
            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
            ./travis-scripts/run-clang-format/run-clang-format.py -r torchvision/csrc --clang-format-executable /opt/clang-format
134

Francisco Massa's avatar
Francisco Massa committed
135
136
137
138
139
140
141
142
143
144
145
146
147
  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

148
149
150
151
152
153
154
155
156
157
158
159
  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
160
            pip install --user onnxruntime
161
162
            python test/test_onnx.py

163
164
165
  binary_linux_wheel:
    <<: *binary_common
    docker:
Edward Z. Yang's avatar
Edward Z. Yang committed
166
      - image: << parameters.wheel_docker_image >>
167
168
    resource_class: 2xlarge+
    steps:
169
      - checkout_merge
170
      - designate_upload_channel
171
172
173
      - run: packaging/build_wheel.sh
      - store_artifacts:
          path: dist
Edward Z. Yang's avatar
Edward Z. Yang committed
174
175
176
177
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
178
179
180
181

  binary_linux_conda:
    <<: *binary_common
    docker:
182
      - image: "pytorch/conda-cuda"
183
    resource_class: 2xlarge+
184
    steps:
185
      - checkout_merge
186
      - designate_upload_channel
187
188
189
      - run: packaging/build_conda.sh
      - store_artifacts:
          path: /opt/conda/conda-bld/linux-64
Edward Z. Yang's avatar
Edward Z. Yang committed
190
191
192
193
      - persist_to_workspace:
          root: /opt/conda/conda-bld/linux-64
          paths:
            - "*"
194
195
      - store_test_results:
          path: build_results/
196

Francisco Massa's avatar
Francisco Massa committed
197
  binary_win_conda:
198
199
    <<: *binary_common
    executor: windows-cpu
200
201
    steps:
      - checkout_merge
202
      - designate_upload_channel
203
204
205
      - run:
          name: Build conda packages
          command: |
206
207
208
209
210
211
212
            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
213
            rm /C/tools/miniconda3/conda-bld/win-64/vs${VC_YEAR}*.tar.bz2
214
      - store_artifacts:
215
          path: C:/tools/miniconda3/conda-bld/win-64
216
      - persist_to_workspace:
217
          root: C:/tools/miniconda3/conda-bld/win-64
218
219
220
221
222
          paths:
            - "*"
      - store_test_results:
          path: build_results/

223
  binary_win_wheel:
224
225
    <<: *binary_common
    executor: windows-cpu
226
227
    steps:
      - checkout_merge
228
      - designate_upload_channel
229
230
231
      - run:
          name: Build wheel packages
          command: |
232
233
234
235
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_wheel.sh
236
      - store_artifacts:
237
          path: dist
238
      - persist_to_workspace:
239
          root: dist
240
241
242
243
244
          paths:
            - "*"
      - store_test_results:
          path: build_results/

245
246
247
  binary_macos_wheel:
    <<: *binary_common
    macos:
248
      xcode: "9.4.1"
249
    steps:
250
      - checkout_merge
251
      - designate_upload_channel
252
253
254
255
256
257
258
259
260
261
262
      - 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
263
264
265
266
      - persist_to_workspace:
          root: dist
          paths:
            - "*"
267
268
269
270

  binary_macos_conda:
    <<: *binary_common
    macos:
271
      xcode: "9.4.1"
272
    steps:
273
      - checkout_merge
274
      - designate_upload_channel
275
276
277
278
279
280
281
282
283
      - 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
284
285
286
287
      - persist_to_workspace:
          root: /Users/distiller/miniconda3/conda-bld/osx-64
          paths:
            - "*"
288
289
      - store_test_results:
          path: build_results/
Edward Z. Yang's avatar
Edward Z. Yang committed
290
291
292
293
294
295
296
297

  # Requires org-member context
  binary_conda_upload:
    docker:
      - image: continuumio/miniconda
    steps:
      - attach_workspace:
          at: ~/workspace
298
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
299
300
301
302
303
      - run:
          command: |
            # Prevent credential from leaking
            conda install -yq anaconda-client
            set -x
304
            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
305
306
307

  # Requires org-member context
  binary_wheel_upload:
Edward Z. Yang's avatar
Edward Z. Yang committed
308
309
310
311
    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
312
313
314
315
316
    docker:
      - image: circleci/python:3.7
    steps:
      - attach_workspace:
          at: ~/workspace
317
      - designate_upload_channel
Edward Z. Yang's avatar
Edward Z. Yang committed
318
319
320
321
322
323
324
325
326
327
      - 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
328
            for pkg in ~/workspace/*.whl; do
329
              aws s3 cp "$pkg" "s3://pytorch/whl/${UPLOAD_CHANNEL}/<< parameters.subfolder >>" --acl public-read
Edward Z. Yang's avatar
Edward Z. Yang committed
330
            done
331

guyang3532's avatar
guyang3532 committed
332
333
334
335
336
  smoke_test_linux_conda:
    <<: *smoke_test_common
    steps:
      - attach_workspace:
          at: ~/workspace
337
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
      - 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
356
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
      - 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
377
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
      - 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
397
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
      - 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
423
      - designate_upload_channel
guyang3532's avatar
guyang3532 committed
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
      - 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"

440
441
442
443
444
445
446
  unittest_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout
447
      - designate_upload_channel
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
      - 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"
486
      PYTHON_VERSION: << parameters.python_version >>
487
488
    steps:
      - checkout
489
      - designate_upload_channel
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
      - run:
          name: Setup
496
          command: docker run -e PYTHON_VERSION -t --gpus all -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/setup_env.sh
497
498
499
500
501
502
503
504
505
      - 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
506
          command: docker run -t --gpus all -v $PWD:$PWD -w $PWD -e UPLOAD_CHANNEL "${image_name}" .circleci/unittest/linux/scripts/install.sh
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
      - 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
522
      - designate_upload_channel
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
      - 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"
560
      PYTHON_VERSION: << parameters.python_version >>
561
562
    steps:
      - checkout
563
      - designate_upload_channel
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
      - 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
589

Francisco Massa's avatar
Francisco Massa committed
590
591
592
593
594
595
596
  unittest_macos_cpu:
    <<: *binary_common
    macos:
      xcode: "9.4.1"
    resource_class: large
    steps:
      - checkout
597
      - designate_upload_channel
Francisco Massa's avatar
Francisco Massa committed
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
      - 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

633
634
635
636
637
638
639
  cmake_linux_cpu:
    <<: *binary_common
    docker:
      - image: "pytorch/manylinux-cuda102"
    resource_class: 2xlarge+
    steps:
      - checkout_merge
640
      - designate_upload_channel
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
      - 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
658
      - designate_upload_channel
659
660
661
662
663
      - 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
664
          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
665
666
667
668

  cmake_macos_cpu:
    <<: *binary_common
    macos:
669
      xcode: "9.4.1"
670
671
    steps:
      - checkout_merge
672
      - designate_upload_channel
673
674
675
676
677
678
679
680
681
682
683
684
685
686
      - 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
687
      - designate_upload_channel
688
689
690
691
692
693
694
695
696
697
698
699
      - 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
700
      - designate_upload_channel
701
702
703
704
705
706
707
      - run:
          command: |
            set -ex
            source packaging/windows/internal/vc_install_helper.sh
            packaging/windows/internal/cuda_install.bat
            packaging/build_cmake.sh

708
709
710
711
712
713
714
715
716
717
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
  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


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

1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
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
  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
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
      - 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'
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271

  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'
1272
1273
1274
1275
      - cmake_windows_gpu:
          cu_version: cu101
          name: cmake_windows_gpu
          python_version: '3.8'
1276
1277
1278
1279
1280
      - cmake_macos_cpu:
          cu_version: cpu
          name: cmake_macos_cpu
          python_version: '3.8'

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