Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support validating go.{mod,sum} files #28

Merged
merged 1 commit into from
Sep 27, 2019
Merged

Support validating go.{mod,sum} files #28

merged 1 commit into from
Sep 27, 2019

Conversation

SamWhited
Copy link
Contributor

@dmcgowan I think something like this may also be useful, is it what you were talking about the other day? If the vendor tree doesn't exist we don't create it, instead we juts run go mod tidy and validate that the go.sum and go.mod files don't change (if they do the user needs to commit them).

@dmcgowan
Copy link
Member

Yes, that is what I was thinking. Are there cases where the go.{sum,mod} files will have differences based on upstream changes?

Signed-off-by: Sam Whited <sam@samwhited.com>
@SamWhited
Copy link
Contributor Author

Are there cases where the go.{sum,mod} files will have differences based on upstream changes?

No, they will only change if you added something to them but then never imported them, updated deps but didn't clean out the old ones from the sum file, or added imports but didn't pin a version. In short if you didn't run go mod tidy and you made changes that require it this will yell at you.

Copy link
Member

@dmcgowan dmcgowan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@SamWhited
Copy link
Contributor Author

It just hit me that the other place this might break is if people do run go mod tidy but are using different versions of Go. I don't think this is likely to be a problem as long as we have specific versions of Go that are supported, but if someone else is using Go 1.13 and we're using Go 1.12 in CI this might result in differences. That being said, now that golang.org/dl is Go-get-able it's trivial to install and use another version.

Copy link
Member

@estesp estesp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@estesp estesp merged commit 1e273cb into containerd:master Sep 27, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants