Merge branch 'chore/move-source-code-to-root-folder' into 'main'

chore: move source code to root folder

See merge request hectorjsmith/fail2ban-prometheus-exporter!77
This commit is contained in:
Hector 2023-06-19 17:58:16 +00:00
commit 95f9c821ff
19 changed files with 5 additions and 5 deletions

View File

@ -1,23 +1,23 @@
go/dependencies: go/dependencies:
cd src/ && go mod download go mod download
# Make sure no unnecessary dependencies are present # Make sure no unnecessary dependencies are present
go/checkDependencies: go/checkDependencies:
cd src/ && go mod tidy -v go mod tidy -v
git diff-index --quiet HEAD git diff-index --quiet HEAD
# Standard go test # Standard go test
go/test: go/test:
cd src/ && go test ./... -v -race go test ./... -v -race
go/fmt: go/fmt:
cd src/ && go fmt ./... go fmt ./...
go/checkFmt: go/checkFmt:
test -z $(shell gofmt -l .) test -z $(shell gofmt -l .)
build/docker: build/docker:
cd src/ && go build -o fail2ban_exporter \ go build -o fail2ban_exporter \
-ldflags '-X main.version=$(shell git describe --tags) -X main.commit=${shell git rev-parse HEAD} -X "main.date=${shell date --rfc-3339=seconds}" -X main.builtBy=docker' exporter.go -ldflags '-X main.version=$(shell git describe --tags) -X main.commit=${shell git rev-parse HEAD} -X "main.date=${shell date --rfc-3339=seconds}" -X main.builtBy=docker' exporter.go
docker/build/latest: docker/build/latest:

View File

View File