@@ -60,13 +60,13 @@ endef
6060lint : lint-go-all lint-imports lint-yaml lint-shell lint-commits lint-headers lint-mod lint-licenses-all
6161test : test-unit test-unit-race test-unit-bench
6262unit : test-unit test-unit-race test-unit-bench
63- fix : fix-mod fix-imports fix- go-all
63+ fix : fix-mod fix-go-all
6464
6565# #########################
6666# Linting tasks
6767# #########################
6868lint-go :
69- $(call title, $@ )
69+ $(call title, $@ : $( GOOS ) )
7070 @cd $(MAKEFILE_DIR ) \
7171 && golangci-lint run $(VERBOSE_FLAG_LONG ) ./...
7272 $(call footer, $@ )
@@ -139,7 +139,7 @@ lint-licenses-all:
139139# Automated fixing tasks
140140# #########################
141141fix-go :
142- $(call title, $@ )
142+ $(call title, $@ : $( GOOS ) )
143143 @cd $(MAKEFILE_DIR ) \
144144 && golangci-lint run --fix
145145 $(call footer, $@ )
@@ -153,12 +153,6 @@ fix-go-all:
153153 && GOOS=windows make fix-go
154154 $(call footer, $@ )
155155
156- fix-imports :
157- $(call title, $@ )
158- @cd $(MAKEFILE_DIR ) \
159- && goimports-reviser -company-prefixes $(ORG_PREFIXES ) ./...
160- $(call footer, $@ )
161-
162156fix-mod :
163157 $(call title, $@ )
164158 @cd $(MAKEFILE_DIR ) \
@@ -180,13 +174,11 @@ install-dev-tools:
180174 # git-validation: main from 2023/11
181175 # ltag: v0.2.5
182176 # go-licenses: v2.0.0-alpha.1
183- # goimports-reviser: v3.9.0
184177 @cd $(MAKEFILE_DIR ) \
185178 && go install github.com/golangci/golangci-lint/cmd/golangci-lint@0a603e49e5e9870f5f9f2035bcbe42cd9620a9d5 \
186179 && go install github.com/vbatts/git-validation@679e5cad8c50f1605ab3d8a0a947aaf72fb24c07 \
187180 && go install github.com/kunalkushwaha/ltag@b0cfa33e4cc9383095dc584d3990b62c95096de0 \
188- && go install github.com/google/go-licenses/v2@d01822334fba5896920a060f762ea7ecdbd086e8 \
189- && go install github.com/incu6us/goimports-reviser/v3@698f92d226d50a01731ca8551993ebc1bb7fc788
181+ && go install github.com/google/go-licenses/v2@d01822334fba5896920a060f762ea7ecdbd086e8
190182 @echo " Remember to add GOROOT/bin to your path"
191183 $(call footer, $@ )
192184
@@ -195,7 +187,7 @@ install-dev-tools:
195187# #########################
196188test-unit :
197189 $(call title, $@ )
198- @go test $(VERBOSE_FLAG ) $(MAKEFILE_DIR ) /...
190+ @EXPERIMENTAL_HIGHK_FD=true go test $(VERBOSE_FLAG ) $(MAKEFILE_DIR ) /...
199191 $(call footer, $@ )
200192
201193test-unit-bench :
@@ -205,7 +197,7 @@ test-unit-bench:
205197
206198test-unit-race :
207199 $(call title, $@ )
208- @go test $(VERBOSE_FLAG ) $(MAKEFILE_DIR ) /... -race
200+ @EXPERIMENTAL_HIGHK_FD=true go test $(VERBOSE_FLAG ) $(MAKEFILE_DIR ) /... -race
209201 $(call footer, $@ )
210202
211203.PHONY : \
@@ -216,5 +208,5 @@ test-unit-race:
216208 unit \
217209 install-dev-tools \
218210 lint-commits lint-go lint-go-all lint-headers lint-imports lint-licenses lint-licenses-all lint-mod lint-shell lint-yaml \
219- fix-go fix-go-all fix-imports fix- mod \
211+ fix-go fix-go-all fix-mod \
220212 test-unit test-unit-race test-unit-bench
0 commit comments