2022-05-13 13:30:22 +00:00
|
|
|
default: build
|
|
|
|
|
|
|
|
lint: vendor
|
2024-12-11 12:53:57 +00:00
|
|
|
@echo "✓ Linting source code with https://golangci-lint.run/ (with --fix)..."
|
|
|
|
@golangci-lint run --fix ./...
|
|
|
|
|
|
|
|
lintcheck: vendor
|
2024-12-04 17:40:19 +00:00
|
|
|
@echo "✓ Linting source code with https://golangci-lint.run/ ..."
|
|
|
|
@golangci-lint run ./...
|
2022-05-13 13:30:22 +00:00
|
|
|
|
2024-12-04 17:40:19 +00:00
|
|
|
test: lint testonly
|
|
|
|
|
|
|
|
testonly:
|
2022-05-13 13:30:22 +00:00
|
|
|
@echo "✓ Running tests ..."
|
|
|
|
@gotestsum --format pkgname-and-test-fails --no-summary=skipped --raw-command go test -v -json -short -coverprofile=coverage.txt ./...
|
|
|
|
|
|
|
|
coverage: test
|
|
|
|
@echo "✓ Opening coverage for unit tests ..."
|
|
|
|
@go tool cover -html=coverage.txt
|
|
|
|
|
|
|
|
build: vendor
|
|
|
|
@echo "✓ Building source code with go build ..."
|
|
|
|
@go build -mod vendor
|
|
|
|
|
2022-05-14 17:56:09 +00:00
|
|
|
snapshot:
|
|
|
|
@echo "✓ Building dev snapshot"
|
2023-10-27 10:50:41 +00:00
|
|
|
@go build -o .databricks/databricks
|
2022-05-14 17:56:09 +00:00
|
|
|
|
2022-05-13 13:30:22 +00:00
|
|
|
vendor:
|
|
|
|
@echo "✓ Filling vendor folder with library code ..."
|
|
|
|
@go mod vendor
|
2024-12-18 16:07:09 +00:00
|
|
|
|
2024-12-18 10:19:14 +00:00
|
|
|
schema:
|
|
|
|
@echo "✓ Generating json-schema ..."
|
|
|
|
@go run ./bundle/internal/schema ./bundle/internal/schema ./bundle/schema/jsonschema.json
|
2022-05-13 13:30:22 +00:00
|
|
|
|
2024-12-18 16:07:09 +00:00
|
|
|
docs:
|
2024-12-18 20:49:42 +00:00
|
|
|
@echo "✓ Generating docs using ./bundle/internal/schema/annotations.yml file..."
|
2024-12-18 16:07:09 +00:00
|
|
|
@go run ./bundle/internal/docs ./bundle/internal/schema ./bundle/internal/docs/docs.md
|
2024-12-18 20:49:42 +00:00
|
|
|
@echo "✓ Writing docs to ./bundle/internal/docs/docs.md"
|
2024-12-18 16:07:09 +00:00
|
|
|
|
2024-12-17 17:16:58 +00:00
|
|
|
INTEGRATION = gotestsum --format github-actions --rerun-fails --jsonfile output.json --packages "./integration/..." -- -parallel 4 -timeout=2h
|
|
|
|
|
2024-12-09 09:52:08 +00:00
|
|
|
integration:
|
2024-12-17 17:16:58 +00:00
|
|
|
$(INTEGRATION)
|
|
|
|
|
|
|
|
integration-short:
|
|
|
|
$(INTEGRATION) -short
|
2023-10-16 15:32:49 +00:00
|
|
|
|
2024-12-18 16:07:09 +00:00
|
|
|
.PHONY: lint lintcheck test testonly coverage build snapshot vendor schema integration integration-short docs
|