-
Notifications
You must be signed in to change notification settings - Fork 215
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
[Merged by Bors] - Skip installation of golangci-lint on windows runners #6021
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #6021 +/- ##
=======================================
Coverage 81.3% 81.3%
=======================================
Files 296 296
Lines 31672 31672
=======================================
+ Hits 25769 25781 +12
+ Misses 4222 4211 -11
+ Partials 1681 1680 -1 ☔ View full report in Codecov by Sentry. |
bors merge |
## Motivation Fix some issues we had on the GH Actions Co-authored-by: Matthias <5011972+fasmat@users.noreply.github.com>
Pull request successfully merged into develop. Build succeeded:
|
ifneq ($(OS),Windows_NT) | ||
# On GH windows runners this fails at the moment: https://github.com/actions/runner-images/issues/10009 | ||
# since we don't run the linter on windows in the CI, we can skip this step for now | ||
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s $(GOLANGCI_LINT_VERSION) | ||
endif | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fasmat It's not only used in CI but also by devs on Windows (IDK if there is anybody developing on Windows at present). Now make lint
will fail with "command not found" error for them...
Motivation
Fix some issues we had on the GH Actions
Description
This PR solves the issue with the git checkout on the windows runner and the installation of the golangci/lint on windows too.
Test Plan
Run the CI workflow