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

git-town: 7.7.0 -> 7.8.0 #185620

Merged
merged 1 commit into from
Aug 19, 2022
Merged

git-town: 7.7.0 -> 7.8.0 #185620

merged 1 commit into from
Aug 19, 2022

Conversation

tjni
Copy link
Contributor

@tjni tjni commented Aug 8, 2022

Plus a patch to fix the build using Go 1.18. Fixes #185096.

Things done
  • Built on platform(s)
    • x86_64-linux
    • aarch64-linux
    • x86_64-darwin
    • aarch64-darwin
  • For non-Linux: Is sandbox = true set in nix.conf? (See Nix manual)
  • Tested, as applicable:
  • Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
  • Tested basic functionality of all binary files (usually in ./result/bin/)
  • 22.11 Release Notes (or backporting 22.05 Release notes)
    • (Package updates) Added a release notes entry if the change is major or breaking
    • (Module updates) Added a release notes entry if the change is significant
    • (Module addition) Added a release notes entry if adding a new NixOS module
    • (Release notes changes) Ran nixos/doc/manual/md-to-db.sh to update generated release notes
  • Fits CONTRIBUTING.md.

Plus a patch to fix the build using Go 1.18.
@smancill
Copy link
Contributor

Result of nixpkgs-review pr 185620 run on x86_64-darwin 1

1 package built:
  • git-town

@tjni
Copy link
Contributor Author

tjni commented Aug 14, 2022

Hi @allonsy, do you have time to take a look?

@nixos-discourse
Copy link

This pull request has been mentioned on NixOS Discourse. There might be relevant details there:

https://discourse.nixos.org/t/prs-already-reviewed/2617/581

Comment on lines +14 to +21
patches = [
# Fix "go vet" when building using Go 1.18.
(fetchpatch {
name = "fix-go-vet-in-go-1.18.patch";
url = "https://github.com/git-town/git-town/commit/23eb0aca7b28c6a0afc21db553aa0e35d35891aa.patch";
sha256 = "sha256-EyfhKVrQxRJNrYqaZI04dJogaXs1J+bbOIu7p8g2Clc=";
})
];
Copy link
Member

Choose a reason for hiding this comment

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

This shouldn't matter. Are we running go vet as part of the build process?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It appears that go vet or some portion of it runs automatically as part of go test.

Copy link
Member

Choose a reason for hiding this comment

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

This should be disabled, we never want to run linters when building.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I personally don't agree, unless the linter in question is purely focused on style enforcement. Even then, I would only diverge from upstream and disable it if it is causing other problems.

If this is a policy within nixpkgs, I don't mind following it, however.

Copy link
Member

Choose a reason for hiding this comment

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

Even then, I would only diverge from upstream and disable it if it is causing other problems.

If it is causing problems it is already extra maintenance burden we could have avoided.

At least for python packages we enforce disabling linters and I think we should follow that in other places, too.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We are optimizing for different things. Your opinion is legitimate too, no hard feelings. I'm currently not interested in pursuing disabling linting for Go projects. If it's a blocker, I'll close this PR.

Copy link
Contributor

@smancill smancill Aug 19, 2022

Choose a reason for hiding this comment

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

There was no reason to close this PR and delete the branch without even waiting for a response as soon as someone has a different opinion.

This shouldn't matter. Are we running go vet as part of the build process?

go test runs some go vet checks. If you are of the opinion that it would be better to disable them, it can be enforced in buildGoModule/buildGoPackage with -vet=off. I see no point in disabling them for only some individual packages.

Having this patch is perfectly fine, it's like any other upstream patch that we fetch while waiting for the next release.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I restored the branch and reopened the PR. I can keep it open for discussion.

Copy link
Contributor

Choose a reason for hiding this comment

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

Can we merge this PR? I think the discussion about what should and should not be run when running go test is out of scope here.

Copy link
Member

@SuperSandro2000 SuperSandro2000 Aug 19, 2022

Choose a reason for hiding this comment

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

go test runs some go vet checks. If you are of the opinion that it would be better to disable them, it can be enforced in buildGoModule/buildGoPackage with -vet=off. I see no point in disabling them for only some individual packages.

Thanks, creating a PR to staging right now to fix similar issues in the future.

#187481

@tjni tjni closed this Aug 19, 2022
@tjni tjni deleted the git-town branch August 19, 2022 02:03
@tjni tjni restored the git-town branch August 19, 2022 04:27
@tjni tjni reopened this Aug 19, 2022
@SuperSandro2000 SuperSandro2000 merged commit 8abd14f into NixOS:master Aug 19, 2022
@tjni tjni deleted the git-town branch August 19, 2022 22:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

git-town fails to build on Darwin
6 participants