Add verify changed less-file step to Makefile (#1861)
This commit is contained in:
parent
89845f6728
commit
2b05b104ef
4 changed files with 25 additions and 16 deletions
|
@ -20,6 +20,7 @@ pipeline:
|
|||
- make generate
|
||||
- make vet
|
||||
- make lint
|
||||
- make stylesheets-check
|
||||
- make misspell-check
|
||||
- make test-vendor
|
||||
- make build
|
||||
|
|
File diff suppressed because one or more lines are too long
18
Makefile
18
Makefile
|
@ -15,7 +15,6 @@ endif
|
|||
|
||||
BINDATA := modules/{options,public,templates}/bindata.go
|
||||
STYLESHEETS := $(wildcard public/less/index.less public/less/_*.less)
|
||||
JAVASCRIPTS :=
|
||||
DOCKER_TAG := gitea/gitea:latest
|
||||
GOFILES := $(shell find . -name "*.go" -type f ! -path "./vendor/*" ! -path "*/bindata.go")
|
||||
GOFMT ?= gofmt -s
|
||||
|
@ -261,12 +260,24 @@ javascripts: public/js/index.js
|
|||
public/js/index.js: $(JAVASCRIPTS)
|
||||
cat $< >| $@
|
||||
|
||||
.PHONY: stylesheets-check
|
||||
stylesheets-check: stylesheets
|
||||
@diff=$$(git diff public/css/index.css); \
|
||||
if [ -n "$$diff" ]; then \
|
||||
echo "Please run 'make less' and commit the result:"; \
|
||||
echo "$${diff}"; \
|
||||
exit 1; \
|
||||
fi;
|
||||
|
||||
.PHONY: stylesheets
|
||||
stylesheets: public/css/index.css
|
||||
|
||||
.IGNORE: public/css/index.css
|
||||
public/css/index.css: $(STYLESHEETS)
|
||||
lessc $< $@
|
||||
@which lessc > /dev/null; if [ $$? -ne 0 ]; then \
|
||||
go get -u github.com/kib357/less-go/lessc; \
|
||||
fi
|
||||
lessc -i $< -o $@
|
||||
|
||||
.PHONY: swagger-ui
|
||||
swagger-ui:
|
||||
|
@ -276,9 +287,6 @@ swagger-ui:
|
|||
rm -Rf /tmp/swagger-ui
|
||||
$(SED_INPLACE) "s;http://petstore.swagger.io/v2/swagger.json;../../swagger.v1.json;g" public/assets/swagger-ui/index.html
|
||||
|
||||
.PHONY: assets
|
||||
assets: javascripts stylesheets
|
||||
|
||||
.PHONY: update-translations
|
||||
update-translations:
|
||||
mkdir -p ./translations
|
||||
|
|
|
@ -451,7 +451,7 @@ footer .ui.language .menu {
|
|||
position: absolute;
|
||||
margin-top: -15px;
|
||||
display: block;
|
||||
background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 100%);
|
||||
background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff 100%);
|
||||
content: ' ';
|
||||
right: 0;
|
||||
height: 53px;
|
||||
|
|
Reference in a new issue