mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
[CI] move parallelnative to periodic (experimental) (#92567)
This PR is more of an RFC asking whether we intend to maintain parallelnative in the long term or to allow it to become community-supported. If we want to maintain parallelnative, then let's close this PR. If we do not, then we should remove it from trunk workflows into periodic (or just remove entirely). Why shouldn't we just allow it to continue on CI regardless? It adds friction to development! If we do support it, I think the friction is good--it prevents users from breaking what we support! But if not, then it is just another job users have to wait for before landing or another vector for flakiness to arise. Pull Request resolved: https://github.com/pytorch/pytorch/pull/92567 Approved by: https://github.com/malfet
This commit is contained in:
parent
28cb3141e8
commit
2a7a859d00
21
.github/workflows/periodic.yml
vendored
21
.github/workflows/periodic.yml
vendored
|
|
@ -14,6 +14,27 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
parallelnative-linux-focal-py3_7-gcc7-build:
|
||||||
|
name: parallelnative-linux-focal-py3.7-gcc7
|
||||||
|
uses: ./.github/workflows/_linux-build.yml
|
||||||
|
with:
|
||||||
|
build-environment: parallelnative-linux-focal-py3.7-gcc7
|
||||||
|
docker-image-name: pytorch-linux-focal-py3.7-gcc7
|
||||||
|
test-matrix: |
|
||||||
|
{ include: [
|
||||||
|
{ config: "default", shard: 1, num_shards: 2, runner: "linux.2xlarge" },
|
||||||
|
{ config: "default", shard: 2, num_shards: 2, runner: "linux.2xlarge" },
|
||||||
|
]}
|
||||||
|
|
||||||
|
parallelnative-linux-focal-py3_7-gcc7-test:
|
||||||
|
name: parallelnative-linux-focal-py3.7-gcc7
|
||||||
|
uses: ./.github/workflows/_linux-test.yml
|
||||||
|
needs: parallelnative-linux-focal-py3_7-gcc7-build
|
||||||
|
with:
|
||||||
|
build-environment: parallelnative-linux-focal-py3.7-gcc7
|
||||||
|
docker-image: ${{ needs.parallelnative-linux-focal-py3_7-gcc7-build.outputs.docker-image }}
|
||||||
|
test-matrix: ${{ needs.parallelnative-linux-focal-py3_7-gcc7-build.outputs.test-matrix }}
|
||||||
|
|
||||||
linux-bionic-cuda11_6-py3-gcc7-slow-gradcheck-build:
|
linux-bionic-cuda11_6-py3-gcc7-slow-gradcheck-build:
|
||||||
name: linux-bionic-cuda11.6-py3-gcc7-slow-gradcheck
|
name: linux-bionic-cuda11.6-py3-gcc7-slow-gradcheck
|
||||||
uses: ./.github/workflows/_linux-build.yml
|
uses: ./.github/workflows/_linux-build.yml
|
||||||
|
|
|
||||||
21
.github/workflows/trunk.yml
vendored
21
.github/workflows/trunk.yml
vendored
|
|
@ -18,27 +18,6 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
parallelnative-linux-focal-py3_7-gcc7-build:
|
|
||||||
name: parallelnative-linux-focal-py3.7-gcc7
|
|
||||||
uses: ./.github/workflows/_linux-build.yml
|
|
||||||
with:
|
|
||||||
build-environment: parallelnative-linux-focal-py3.7-gcc7
|
|
||||||
docker-image-name: pytorch-linux-focal-py3.7-gcc7
|
|
||||||
test-matrix: |
|
|
||||||
{ include: [
|
|
||||||
{ config: "default", shard: 1, num_shards: 2, runner: "linux.2xlarge" },
|
|
||||||
{ config: "default", shard: 2, num_shards: 2, runner: "linux.2xlarge" },
|
|
||||||
]}
|
|
||||||
|
|
||||||
parallelnative-linux-focal-py3_7-gcc7-test:
|
|
||||||
name: parallelnative-linux-focal-py3.7-gcc7
|
|
||||||
uses: ./.github/workflows/_linux-test.yml
|
|
||||||
needs: parallelnative-linux-focal-py3_7-gcc7-build
|
|
||||||
with:
|
|
||||||
build-environment: parallelnative-linux-focal-py3.7-gcc7
|
|
||||||
docker-image: ${{ needs.parallelnative-linux-focal-py3_7-gcc7-build.outputs.docker-image }}
|
|
||||||
test-matrix: ${{ needs.parallelnative-linux-focal-py3_7-gcc7-build.outputs.test-matrix }}
|
|
||||||
|
|
||||||
# Build PyTorch with BUILD_CAFFE2=ON
|
# Build PyTorch with BUILD_CAFFE2=ON
|
||||||
caffe2-linux-focal-py3_7-gcc7-build:
|
caffe2-linux-focal-py3_7-gcc7-build:
|
||||||
name: caffe2-linux-focal-py3.7-gcc7
|
name: caffe2-linux-focal-py3.7-gcc7
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user