Prevent clobbering of docker images by parallelnative/paralleltbb builds#39863
Closed
zou3519 wants to merge 2 commits intogh/zou3519/257/basefrom
Closed
Prevent clobbering of docker images by parallelnative/paralleltbb builds#39863zou3519 wants to merge 2 commits intogh/zou3519/257/basefrom
zou3519 wants to merge 2 commits intogh/zou3519/257/basefrom
Conversation
The paralleltbb and parallelnative builds use the same docker image as pytorch-linux-trusty-py3.6-gcc5.4-build (https://github.com/pytorch/pytorch/blob/da3073e9b1db503f106842339f50f522d973be84/.circleci/config.yml#L6752) Therefore they should push to a different intermediate docker image for the next phase (testing), according to (https://github.com/pytorch/pytorch/blob/da3073e9b1db503f106842339f50f522d973be84/.circleci/config.yml#L434-L439). However, they're not actually included in that list. We've found evidence of what looks like clobbering in recent CI jobs (https://circleci.com/gh/pytorch/pytorch/5787534?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link), (https://circleci.com/gh/pytorch/pytorch/5787763?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link) This PR adds parallelnative and paralleltbb to the list to prevent clobbering. Test Plan: - Wait for CI tests to pass on this PR. - The paralleltbb and parallelnative builds don't actually run on PRs. So I think the plan here is to yolo land and hope it works. [ghstack-poisoned]
…lleltbb builds" The paralleltbb and parallelnative builds use the same docker image as pytorch-linux-trusty-py3.6-gcc5.4-build (https://github.com/pytorch/pytorch/blob/da3073e9b1db503f106842339f50f522d973be84/.circleci/config.yml#L6752) Therefore they should push to a different intermediate docker image for the next phase (testing), according to (https://github.com/pytorch/pytorch/blob/da3073e9b1db503f106842339f50f522d973be84/.circleci/config.yml#L434-L439). However, they're not actually included in that list. We've found evidence of what looks like clobbering in recent CI jobs (https://circleci.com/gh/pytorch/pytorch/5787534?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link), (https://circleci.com/gh/pytorch/pytorch/5787763?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link) This PR adds parallelnative and paralleltbb to the list to prevent clobbering. Test Plan: - Wait for CI tests to pass on this PR. - The paralleltbb and parallelnative builds don't actually run on PRs. So I think the plan here is to yolo land and hope it works. [ghstack-poisoned]
zou3519
added a commit
that referenced
this pull request
Jun 11, 2020
The paralleltbb and parallelnative builds use the same docker image as pytorch-linux-trusty-py3.6-gcc5.4-build (https://github.com/pytorch/pytorch/blob/da3073e9b1db503f106842339f50f522d973be84/.circleci/config.yml#L6752) Therefore they should push to a different intermediate docker image for the next phase (testing), according to (https://github.com/pytorch/pytorch/blob/da3073e9b1db503f106842339f50f522d973be84/.circleci/config.yml#L434-L439). However, they're not actually included in that list. We've found evidence of what looks like clobbering in recent CI jobs (https://circleci.com/gh/pytorch/pytorch/5787534?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link), (https://circleci.com/gh/pytorch/pytorch/5787763?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link) This PR adds parallelnative and paralleltbb to the list to prevent clobbering. Test Plan: - Wait for CI tests to pass on this PR. - The paralleltbb and parallelnative builds don't actually run on PRs. So I think the plan here is to yolo land and hope it works. ghstack-source-id: e2fac1e Pull Request resolved: #39863
💊 CI failures summary and remediationsAs of commit 6561a12 (more details on the Dr. CI page):
❄️ 1 failure tentatively classified as flakybut reruns have not yet been triggered to confirm:
|
ezyang
approved these changes
Jun 11, 2020
Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Stack from ghstack:
The paralleltbb and parallelnative builds use the same docker image as
pytorch-linux-trusty-py3.6-gcc5.4-build
(
pytorch/.circleci/config.yml
Line 6752 in da3073e
Therefore they should push to a different intermediate docker image for
the next phase (testing), according to
(
pytorch/.circleci/config.yml
Lines 434 to 439 in da3073e
However, they're not actually included in that list.
We've found evidence of what looks like clobbering in recent CI jobs
(https://circleci.com/gh/pytorch/pytorch/5787534?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link),
(https://circleci.com/gh/pytorch/pytorch/5787763?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link)
This PR adds parallelnative and paralleltbb to the list to prevent
clobbering.
Test Plan:
So I think the plan here is to yolo land and hope it works.
Differential Revision: D22002279