mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
Makefile cleanup & double golangci-lint timeout (#14044)
* Makefile cleanup The xmldom dependency is no longer required since #13680. Also, whitespace cleanup. * double the golangci-lint timeout
This commit is contained in:
parent
f8a668ab0c
commit
e9cc613c24
1 changed files with 2 additions and 4 deletions
6
Makefile
6
Makefile
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
ifeq ($(USE_REPO_TEST_DIR),1)
|
ifeq ($(USE_REPO_TEST_DIR),1)
|
||||||
|
|
||||||
# This rule replaces the whole Makefile when we're trying to use /tmp repository temporary files
|
# This rule replaces the whole Makefile when we're trying to use /tmp repository temporary files
|
||||||
|
@ -697,10 +696,9 @@ generate-license:
|
||||||
generate-gitignore:
|
generate-gitignore:
|
||||||
GO111MODULE=on $(GO) run build/generate-gitignores.go
|
GO111MODULE=on $(GO) run build/generate-gitignores.go
|
||||||
|
|
||||||
|
|
||||||
.PHONY: generate-images
|
.PHONY: generate-images
|
||||||
generate-images:
|
generate-images:
|
||||||
npm install --no-save --no-package-lock xmldom fabric imagemin-zopfli
|
npm install --no-save --no-package-lock fabric imagemin-zopfli
|
||||||
node build/generate-images.js
|
node build/generate-images.js
|
||||||
|
|
||||||
.PHONY: pr\#%
|
.PHONY: pr\#%
|
||||||
|
@ -713,7 +711,7 @@ golangci-lint:
|
||||||
export BINARY="golangci-lint"; \
|
export BINARY="golangci-lint"; \
|
||||||
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOPATH)/bin v1.31.0; \
|
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOPATH)/bin v1.31.0; \
|
||||||
fi
|
fi
|
||||||
golangci-lint run --timeout 5m
|
golangci-lint run --timeout 10m
|
||||||
|
|
||||||
.PHONY: docker
|
.PHONY: docker
|
||||||
docker:
|
docker:
|
||||||
|
|
Loading…
Reference in a new issue