Check that only certain files are executable
This commit is contained in:
parent
fa7b9da808
commit
b8adf689fd
13
Makefile
13
Makefile
|
@ -11,6 +11,8 @@ GOPATH=$(shell go env GOPATH)
|
||||||
# gofmt
|
# gofmt
|
||||||
UNFORMATTED_FILES=$(shell find . -not -path "./vendor/*" -name "*.go" | xargs gofmt -s -l)
|
UNFORMATTED_FILES=$(shell find . -not -path "./vendor/*" -name "*.go" | xargs gofmt -s -l)
|
||||||
|
|
||||||
|
EXECUTABLE_FILES=$(shell find . -type f -perm +111 | egrep -v '^\./(vendor/|\.git|bin/|scripts/|pkg/)' | egrep -v '.*(\.sh|\.bats)' | egrep -v './provisioner/ansible/test-fixtures/exit1')
|
||||||
|
|
||||||
# Get the git commit
|
# Get the git commit
|
||||||
GIT_DIRTY=$(shell test -n "`git status --porcelain`" && echo "+CHANGES" || true)
|
GIT_DIRTY=$(shell test -n "`git status --porcelain`" && echo "+CHANGES" || true)
|
||||||
GIT_COMMIT=$(shell git rev-parse --short HEAD)
|
GIT_COMMIT=$(shell git rev-parse --short HEAD)
|
||||||
|
@ -75,6 +77,15 @@ fmt-check: ## Check go code formatting
|
||||||
echo "Check passed."; \
|
echo "Check passed."; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
mode-check: ## Check that only certain files are executable
|
||||||
|
@echo "==> Checking that only certain files are executable..."
|
||||||
|
@if [ ! -z "$(EXECUTABLE_FILES)" ]; then \
|
||||||
|
echo "These files should not be executable or they must be white listed in the Makefile:"; \
|
||||||
|
echo "$(EXECUTABLE_FILES)" | xargs -n1; \
|
||||||
|
exit 1; \
|
||||||
|
else \
|
||||||
|
echo "Check passed."; \
|
||||||
|
fi
|
||||||
fmt-docs:
|
fmt-docs:
|
||||||
@find ./website/source/docs -name "*.md" -exec pandoc --wrap auto --columns 79 --atx-headers -s -f "markdown_github+yaml_metadata_block" -t "markdown_github+yaml_metadata_block" {} -o {} \;
|
@find ./website/source/docs -name "*.md" -exec pandoc --wrap auto --columns 79 --atx-headers -s -f "markdown_github+yaml_metadata_block" -t "markdown_github+yaml_metadata_block" {} -o {} \;
|
||||||
|
|
||||||
|
@ -90,7 +101,7 @@ generate: deps ## Generate dynamically generated code
|
||||||
goimports -w common/bootcommand/boot_command.go
|
goimports -w common/bootcommand/boot_command.go
|
||||||
gofmt -w command/plugin.go
|
gofmt -w command/plugin.go
|
||||||
|
|
||||||
test: deps fmt-check ## Run unit tests
|
test: deps fmt-check mode-check ## Run unit tests
|
||||||
@go test $(TEST) $(TESTARGS) -timeout=2m
|
@go test $(TEST) $(TESTARGS) -timeout=2m
|
||||||
@go tool vet $(VET) ; if [ $$? -eq 1 ]; then \
|
@go tool vet $(VET) ; if [ $$? -eq 1 ]; then \
|
||||||
echo "ERROR: Vet found problems in the code."; \
|
echo "ERROR: Vet found problems in the code."; \
|
||||||
|
|
Loading…
Reference in New Issue