.circleci: Re-do run nightly pipelines on tag (#34148)
Summary:
Commit that this commit relied on was found to be causing issues with
valgrind https://github.com/pytorch/pytorch/issues/33471
Re-does https://github.com/pytorch/pytorch/issues/34078 after revert.
This reverts commit 1aff3e2dd3c3937aa1fedbfeee2143cfca25abcc.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/34148
Differential Revision: D20234451
Pulled By: seemethere
fbshipit-source-id: cb5e496a3f761beeeb0cc8df71f9ebc0b271737b
diff --git a/.circleci/cimodel/data/binary_build_definitions.py b/.circleci/cimodel/data/binary_build_definitions.py
index 9da41af..aef8780 100644
--- a/.circleci/cimodel/data/binary_build_definitions.py
+++ b/.circleci/cimodel/data/binary_build_definitions.py
@@ -67,7 +67,17 @@
job_def["requires"].append("update_s3_htmls_for_nightlies_devtoolset7")
job_def["filters"] = {"branches": {"only": "postnightly"}}
else:
- job_def["filters"] = {"branches": {"only": "nightly"}}
+ job_def["filters"] = {
+ "branches": {
+ "only": "nightly"
+ },
+ # Will run on tags like v1.5.0-rc1, etc.
+ "tags": {
+ # Using a raw string here to avoid having to escape
+ # anything
+ "only": r"/v[0-9]+(\.[0-9]+)*-rc[0-9]+/"
+ }
+ }
if self.libtorch_variant:
job_def["libtorch_variant"] = miniutils.quote(self.libtorch_variant)
if phase == "test":
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 64f5526..77cadc3 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -3495,6 +3495,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_2_7mu_cpu_devtoolset7_nightly_build
@@ -3504,6 +3506,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_3_5m_cpu_devtoolset7_nightly_build
@@ -3513,6 +3517,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_3_6m_cpu_devtoolset7_nightly_build
@@ -3522,6 +3528,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_3_7m_cpu_devtoolset7_nightly_build
@@ -3531,6 +3539,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_2_7m_cu92_devtoolset7_nightly_build
@@ -3540,6 +3550,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
- binary_linux_build:
name: binary_linux_manywheel_2_7mu_cu92_devtoolset7_nightly_build
@@ -3549,6 +3561,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
- binary_linux_build:
name: binary_linux_manywheel_3_5m_cu92_devtoolset7_nightly_build
@@ -3558,6 +3572,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
- binary_linux_build:
name: binary_linux_manywheel_3_6m_cu92_devtoolset7_nightly_build
@@ -3567,6 +3583,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
- binary_linux_build:
name: binary_linux_manywheel_3_7m_cu92_devtoolset7_nightly_build
@@ -3576,6 +3594,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
- binary_linux_build:
name: binary_linux_manywheel_2_7m_cu100_devtoolset7_nightly_build
@@ -3585,6 +3605,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_2_7mu_cu100_devtoolset7_nightly_build
@@ -3594,6 +3616,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_3_5m_cu100_devtoolset7_nightly_build
@@ -3603,6 +3627,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_3_6m_cu100_devtoolset7_nightly_build
@@ -3612,6 +3638,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_3_7m_cu100_devtoolset7_nightly_build
@@ -3621,6 +3649,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
name: binary_linux_manywheel_2_7m_cu101_devtoolset7_nightly_build
@@ -3630,6 +3660,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
- binary_linux_build:
name: binary_linux_manywheel_2_7mu_cu101_devtoolset7_nightly_build
@@ -3639,6 +3671,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
- binary_linux_build:
name: binary_linux_manywheel_3_5m_cu101_devtoolset7_nightly_build
@@ -3648,6 +3682,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
- binary_linux_build:
name: binary_linux_manywheel_3_6m_cu101_devtoolset7_nightly_build
@@ -3657,6 +3693,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
- binary_linux_build:
name: binary_linux_manywheel_3_7m_cu101_devtoolset7_nightly_build
@@ -3666,6 +3704,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
- binary_linux_build:
name: binary_linux_conda_2_7_cpu_devtoolset7_nightly_build
@@ -3675,6 +3715,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_5_cpu_devtoolset7_nightly_build
@@ -3684,6 +3726,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_6_cpu_devtoolset7_nightly_build
@@ -3693,6 +3737,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_7_cpu_devtoolset7_nightly_build
@@ -3702,6 +3748,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_8_cpu_devtoolset7_nightly_build
@@ -3711,6 +3759,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_2_7_cu92_devtoolset7_nightly_build
@@ -3720,6 +3770,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_5_cu92_devtoolset7_nightly_build
@@ -3729,6 +3781,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_6_cu92_devtoolset7_nightly_build
@@ -3738,6 +3792,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_7_cu92_devtoolset7_nightly_build
@@ -3747,6 +3803,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_8_cu92_devtoolset7_nightly_build
@@ -3756,6 +3814,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_2_7_cu100_devtoolset7_nightly_build
@@ -3765,6 +3825,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_5_cu100_devtoolset7_nightly_build
@@ -3774,6 +3836,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_6_cu100_devtoolset7_nightly_build
@@ -3783,6 +3847,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_7_cu100_devtoolset7_nightly_build
@@ -3792,6 +3858,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_8_cu100_devtoolset7_nightly_build
@@ -3801,6 +3869,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_2_7_cu101_devtoolset7_nightly_build
@@ -3810,6 +3880,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_5_cu101_devtoolset7_nightly_build
@@ -3819,6 +3891,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_6_cu101_devtoolset7_nightly_build
@@ -3828,6 +3902,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_7_cu101_devtoolset7_nightly_build
@@ -3837,6 +3913,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_conda_3_8_cu101_devtoolset7_nightly_build
@@ -3846,6 +3924,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_build:
name: binary_linux_libtorch_2_7m_cpu_devtoolset7_nightly_shared-with-deps_build
@@ -3855,6 +3935,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
@@ -3865,6 +3947,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
@@ -3875,6 +3959,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
@@ -3885,6 +3971,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
@@ -3895,6 +3983,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/manylinux-cuda92"
- binary_linux_build:
@@ -3905,6 +3995,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/manylinux-cuda92"
- binary_linux_build:
@@ -3915,6 +4007,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/manylinux-cuda92"
- binary_linux_build:
@@ -3925,6 +4019,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/manylinux-cuda92"
- binary_linux_build:
@@ -3935,6 +4031,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
@@ -3945,6 +4043,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
@@ -3955,6 +4055,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
@@ -3965,6 +4067,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_build:
@@ -3975,6 +4079,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/manylinux-cuda101"
- binary_linux_build:
@@ -3985,6 +4091,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/manylinux-cuda101"
- binary_linux_build:
@@ -3995,6 +4103,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/manylinux-cuda101"
- binary_linux_build:
@@ -4005,6 +4115,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/manylinux-cuda101"
- binary_linux_build:
@@ -4015,6 +4127,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4025,6 +4139,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4035,6 +4151,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4045,6 +4163,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4055,6 +4175,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4065,6 +4187,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4075,6 +4199,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4085,6 +4211,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4095,6 +4223,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4105,6 +4235,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4115,6 +4247,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4125,6 +4259,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4135,6 +4271,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4145,6 +4283,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4155,6 +4295,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_build:
@@ -4165,6 +4307,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_mac_build:
@@ -4175,6 +4319,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_wheel_3_5_cpu_nightly_build
build_environment: "wheel 3.5 cpu"
@@ -4183,6 +4329,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_wheel_3_6_cpu_nightly_build
build_environment: "wheel 3.6 cpu"
@@ -4191,6 +4339,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_wheel_3_7_cpu_nightly_build
build_environment: "wheel 3.7 cpu"
@@ -4199,6 +4349,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_wheel_3_8_cpu_nightly_build
build_environment: "wheel 3.8 cpu"
@@ -4207,6 +4359,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_conda_2_7_cpu_nightly_build
build_environment: "conda 2.7 cpu"
@@ -4215,6 +4369,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_conda_3_5_cpu_nightly_build
build_environment: "conda 3.5 cpu"
@@ -4223,6 +4379,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_conda_3_6_cpu_nightly_build
build_environment: "conda 3.6 cpu"
@@ -4231,6 +4389,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_conda_3_7_cpu_nightly_build
build_environment: "conda 3.7 cpu"
@@ -4239,6 +4399,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_conda_3_8_cpu_nightly_build
build_environment: "conda 3.8 cpu"
@@ -4247,6 +4409,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
- binary_mac_build:
name: binary_macos_libtorch_2_7_cpu_nightly_build
build_environment: "libtorch 2.7 cpu"
@@ -4255,6 +4419,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
# Pytorch iOS binary builds
- binary_ios_build:
name: pytorch_ios_11_2_1_nightly_x86_64_build
@@ -4356,6 +4522,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_test:
name: binary_linux_manywheel_2_7mu_cpu_devtoolset7_nightly_test
@@ -4366,6 +4534,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_test:
name: binary_linux_manywheel_3_5m_cpu_devtoolset7_nightly_test
@@ -4376,6 +4546,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_test:
name: binary_linux_manywheel_3_6m_cpu_devtoolset7_nightly_test
@@ -4386,6 +4558,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_test:
name: binary_linux_manywheel_3_7m_cpu_devtoolset7_nightly_test
@@ -4396,6 +4570,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_test:
name: binary_linux_manywheel_2_7m_cu92_devtoolset7_nightly_test
@@ -4406,6 +4582,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4418,6 +4596,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4430,6 +4610,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4442,6 +4624,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4454,6 +4638,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda92"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4466,6 +4652,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4478,6 +4666,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4490,6 +4680,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4502,6 +4694,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4514,6 +4708,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda100"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4526,6 +4722,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4538,6 +4736,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4550,6 +4750,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4562,6 +4764,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4574,6 +4778,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/manylinux-cuda101"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4586,6 +4792,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_test:
name: binary_linux_conda_3_5_cpu_devtoolset7_nightly_test
@@ -4596,6 +4804,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_test:
name: binary_linux_conda_3_6_cpu_devtoolset7_nightly_test
@@ -4606,6 +4816,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_test:
name: binary_linux_conda_3_7_cpu_devtoolset7_nightly_test
@@ -4616,6 +4828,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_test:
name: binary_linux_conda_3_8_cpu_devtoolset7_nightly_test
@@ -4626,6 +4840,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
- binary_linux_test:
name: binary_linux_conda_2_7_cu92_devtoolset7_nightly_test
@@ -4636,6 +4852,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4648,6 +4866,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4660,6 +4880,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4672,6 +4894,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4684,6 +4908,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4696,6 +4922,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4708,6 +4936,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4720,6 +4950,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4732,6 +4964,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4744,6 +4978,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4756,6 +4992,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4768,6 +5006,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4780,6 +5020,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4792,6 +5034,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4804,6 +5048,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
docker_image: "pytorch/conda-cuda"
use_cuda_docker_runtime: "1"
resource_class: gpu.medium
@@ -4816,6 +5062,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_test:
@@ -4827,6 +5075,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_test:
@@ -4838,6 +5088,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_test:
@@ -4849,6 +5101,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/manylinux-cuda100"
- binary_linux_test:
@@ -4860,6 +5114,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/manylinux-cuda92"
use_cuda_docker_runtime: "1"
@@ -4873,6 +5129,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/manylinux-cuda92"
use_cuda_docker_runtime: "1"
@@ -4886,6 +5144,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/manylinux-cuda92"
use_cuda_docker_runtime: "1"
@@ -4899,6 +5159,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/manylinux-cuda92"
use_cuda_docker_runtime: "1"
@@ -4912,6 +5174,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/manylinux-cuda100"
use_cuda_docker_runtime: "1"
@@ -4925,6 +5189,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/manylinux-cuda100"
use_cuda_docker_runtime: "1"
@@ -4938,6 +5204,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/manylinux-cuda100"
use_cuda_docker_runtime: "1"
@@ -4951,6 +5219,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/manylinux-cuda100"
use_cuda_docker_runtime: "1"
@@ -4964,6 +5234,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/manylinux-cuda101"
use_cuda_docker_runtime: "1"
@@ -4977,6 +5249,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/manylinux-cuda101"
use_cuda_docker_runtime: "1"
@@ -4990,6 +5264,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/manylinux-cuda101"
use_cuda_docker_runtime: "1"
@@ -5003,6 +5279,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/manylinux-cuda101"
use_cuda_docker_runtime: "1"
@@ -5016,6 +5294,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_test:
@@ -5027,6 +5307,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_test:
@@ -5038,6 +5320,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_test:
@@ -5049,6 +5333,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
- binary_linux_test:
@@ -5060,6 +5346,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5073,6 +5361,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5086,6 +5376,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5099,6 +5391,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5112,6 +5406,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5125,6 +5421,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5138,6 +5436,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5151,6 +5451,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5164,6 +5466,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5177,6 +5481,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5190,6 +5496,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5203,6 +5511,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
docker_image: "pytorch/pytorch-binary-docker-image-ubuntu16.04:latest"
use_cuda_docker_runtime: "1"
@@ -5227,6 +5537,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_2_7mu_cpu_devtoolset7_nightly_upload
@@ -5237,6 +5549,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_5m_cpu_devtoolset7_nightly_upload
@@ -5247,6 +5561,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_6m_cpu_devtoolset7_nightly_upload
@@ -5257,6 +5573,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_7m_cpu_devtoolset7_nightly_upload
@@ -5267,6 +5585,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_2_7m_cu92_devtoolset7_nightly_upload
@@ -5277,6 +5597,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_2_7mu_cu92_devtoolset7_nightly_upload
@@ -5287,6 +5609,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_5m_cu92_devtoolset7_nightly_upload
@@ -5297,6 +5621,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_6m_cu92_devtoolset7_nightly_upload
@@ -5307,6 +5633,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_7m_cu92_devtoolset7_nightly_upload
@@ -5317,6 +5645,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_2_7m_cu100_devtoolset7_nightly_upload
@@ -5327,6 +5657,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_2_7mu_cu100_devtoolset7_nightly_upload
@@ -5337,6 +5669,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_5m_cu100_devtoolset7_nightly_upload
@@ -5347,6 +5681,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_6m_cu100_devtoolset7_nightly_upload
@@ -5357,6 +5693,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_7m_cu100_devtoolset7_nightly_upload
@@ -5367,6 +5705,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_2_7m_cu101_devtoolset7_nightly_upload
@@ -5377,6 +5717,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_2_7mu_cu101_devtoolset7_nightly_upload
@@ -5387,6 +5729,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_5m_cu101_devtoolset7_nightly_upload
@@ -5397,6 +5741,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_6m_cu101_devtoolset7_nightly_upload
@@ -5407,6 +5753,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_manywheel_3_7m_cu101_devtoolset7_nightly_upload
@@ -5417,6 +5765,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_2_7_cpu_devtoolset7_nightly_upload
@@ -5427,6 +5777,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_5_cpu_devtoolset7_nightly_upload
@@ -5437,6 +5789,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_6_cpu_devtoolset7_nightly_upload
@@ -5447,6 +5801,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_7_cpu_devtoolset7_nightly_upload
@@ -5457,6 +5813,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_8_cpu_devtoolset7_nightly_upload
@@ -5467,6 +5825,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_2_7_cu92_devtoolset7_nightly_upload
@@ -5477,6 +5837,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_5_cu92_devtoolset7_nightly_upload
@@ -5487,6 +5849,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_6_cu92_devtoolset7_nightly_upload
@@ -5497,6 +5861,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_7_cu92_devtoolset7_nightly_upload
@@ -5507,6 +5873,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_8_cu92_devtoolset7_nightly_upload
@@ -5517,6 +5885,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_2_7_cu100_devtoolset7_nightly_upload
@@ -5527,6 +5897,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_5_cu100_devtoolset7_nightly_upload
@@ -5537,6 +5909,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_6_cu100_devtoolset7_nightly_upload
@@ -5547,6 +5921,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_7_cu100_devtoolset7_nightly_upload
@@ -5557,6 +5933,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_8_cu100_devtoolset7_nightly_upload
@@ -5567,6 +5945,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_2_7_cu101_devtoolset7_nightly_upload
@@ -5577,6 +5957,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_5_cu101_devtoolset7_nightly_upload
@@ -5587,6 +5969,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_6_cu101_devtoolset7_nightly_upload
@@ -5597,6 +5981,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_7_cu101_devtoolset7_nightly_upload
@@ -5607,6 +5993,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_conda_3_8_cu101_devtoolset7_nightly_upload
@@ -5617,6 +6005,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_linux_upload:
name: binary_linux_libtorch_2_7m_cpu_devtoolset7_nightly_shared-with-deps_upload
@@ -5627,6 +6017,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
context: org-member
- binary_linux_upload:
@@ -5638,6 +6030,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
context: org-member
- binary_linux_upload:
@@ -5649,6 +6043,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
context: org-member
- binary_linux_upload:
@@ -5660,6 +6056,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
context: org-member
- binary_linux_upload:
@@ -5671,6 +6069,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
context: org-member
- binary_linux_upload:
@@ -5682,6 +6082,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
context: org-member
- binary_linux_upload:
@@ -5693,6 +6095,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
context: org-member
- binary_linux_upload:
@@ -5704,6 +6108,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
context: org-member
- binary_linux_upload:
@@ -5715,6 +6121,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
context: org-member
- binary_linux_upload:
@@ -5726,6 +6134,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
context: org-member
- binary_linux_upload:
@@ -5737,6 +6147,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
context: org-member
- binary_linux_upload:
@@ -5748,6 +6160,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
context: org-member
- binary_linux_upload:
@@ -5759,6 +6173,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
context: org-member
- binary_linux_upload:
@@ -5770,6 +6186,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
context: org-member
- binary_linux_upload:
@@ -5781,6 +6199,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
context: org-member
- binary_linux_upload:
@@ -5792,6 +6212,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
context: org-member
- binary_linux_upload:
@@ -5803,6 +6225,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
context: org-member
- binary_linux_upload:
@@ -5814,6 +6238,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
context: org-member
- binary_linux_upload:
@@ -5825,6 +6251,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
context: org-member
- binary_linux_upload:
@@ -5836,6 +6264,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
context: org-member
- binary_linux_upload:
@@ -5847,6 +6277,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
context: org-member
- binary_linux_upload:
@@ -5858,6 +6290,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
context: org-member
- binary_linux_upload:
@@ -5869,6 +6303,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
context: org-member
- binary_linux_upload:
@@ -5880,6 +6316,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
context: org-member
- binary_linux_upload:
@@ -5891,6 +6329,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
context: org-member
- binary_linux_upload:
@@ -5902,6 +6342,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
context: org-member
- binary_linux_upload:
@@ -5913,6 +6355,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
context: org-member
- binary_linux_upload:
@@ -5924,6 +6368,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
context: org-member
- binary_linux_upload:
@@ -5935,6 +6381,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-with-deps"
context: org-member
- binary_linux_upload:
@@ -5946,6 +6394,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "shared-without-deps"
context: org-member
- binary_linux_upload:
@@ -5957,6 +6407,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-with-deps"
context: org-member
- binary_linux_upload:
@@ -5968,6 +6420,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
libtorch_variant: "static-without-deps"
context: org-member
- binary_mac_upload:
@@ -5979,6 +6433,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_wheel_3_5_cpu_nightly_upload
@@ -5989,6 +6445,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_wheel_3_6_cpu_nightly_upload
@@ -5999,6 +6457,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_wheel_3_7_cpu_nightly_upload
@@ -6009,6 +6469,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_wheel_3_8_cpu_nightly_upload
@@ -6019,6 +6481,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_conda_2_7_cpu_nightly_upload
@@ -6029,6 +6493,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_conda_3_5_cpu_nightly_upload
@@ -6039,6 +6505,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_conda_3_6_cpu_nightly_upload
@@ -6049,6 +6517,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_conda_3_7_cpu_nightly_upload
@@ -6059,6 +6529,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_conda_3_8_cpu_nightly_upload
@@ -6069,6 +6541,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- binary_mac_upload:
name: binary_macos_libtorch_2_7_cpu_nightly_upload
@@ -6079,6 +6553,8 @@
filters:
branches:
only: nightly
+ tags:
+ only: /v[0-9]+(\.[0-9]+)*-rc[0-9]+/
context: org-member
- update_s3_htmls_for_nightlies:
context: org-member