Dockerfile: remove GOMETALINTER_OPTS#39900
Merged
thaJeztah merged 1 commit intomoby:masterfrom Sep 11, 2019
Merged
Conversation
This `ENV` was added to the Dockerfile in b96093f, when the repository used per-architecture Dockerfiles, and some architectures needed a different configuration. Now that we use a multi-arch Dockerfile, and CI uses a Jenkinsfile, we can remove this `ENV` from the Dockerfile, and set it in CI instead if needed. Also updated the wording and fixed linting issues in hack/validate/gometalinter Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Member
Author
|
ping @kolyshkin @vdemeester PTAL |
AkihiroSuda
approved these changes
Sep 11, 2019
Member
Author
|
Failures on RS1; this one is not (yet) marked as flaky, but was mentioned in #39747 (comment) to be timing out on RS1 Previously it was disabled on Windows (known to be failing); #34340 And a known flaky; tracked through issue #38521, and for which there's a WIP PR (that stalled unfortunately); #38595 Failure on RS5 was a Jenkins issue https://ci.docker.com/public/job/moby/job/PR-39900/1/execution/node/72/log/ |
Member
Author
|
Everything else is green; I'm merging this one, because the changes in this PR do not affect anything that's running on Windows, so those failures are definitely unrelated |
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.
This
ENVwas added to the Dockerfile in b96093f (#34759),when the repository used per-architecture Dockerfiles, and some architectures needed
a different configuration.
Now that we use a multi-arch Dockerfile, and CI uses a Jenkinsfile, we can remove
this
ENVfrom the Dockerfile, and set it in CI instead if needed.Also updated the wording and fixed linting issues in hack/validate/gometalinter
Note that this changes the
--deadlineto use the default (10m), which probably isn't a big issue (note that on the Go 1.13 update PR, we actually run into the 2m deadline #39549, which is when I found that we override the default 10m)