2019-10-22 09:03:22 -05:00
|
|
|
## This is a self-documented Makefile. For usage information, run `make help`:
|
|
|
|
##
|
|
|
|
## For more information, refer to https://suva.sh/posts/well-documented-makefiles/
|
|
|
|
|
2021-08-25 08:11:22 -05:00
|
|
|
WIRE_TAGS = "oss"
|
|
|
|
|
2018-05-07 05:32:18 -05:00
|
|
|
-include local/Makefile
|
2021-08-25 08:11:22 -05:00
|
|
|
include .bingo/Variables.mk
|
2018-05-07 05:32:18 -05:00
|
|
|
|
2022-06-15 10:33:40 -05:00
|
|
|
.PHONY: all deps-go deps-js deps build-go build-server build-cli build-js build build-docker-full build-docker-full-ubuntu lint-go golangci-lint test-go test-js gen-ts test run run-frontend clean devenv devenv-down protobuf drone help gen-go gen-cue
|
2019-05-15 16:29:26 -05:00
|
|
|
|
2021-06-29 03:01:21 -05:00
|
|
|
GO = go
|
2019-07-18 04:11:05 -05:00
|
|
|
GO_FILES ?= ./pkg/...
|
2019-07-23 05:12:33 -05:00
|
|
|
SH_FILES ?= $(shell find ./scripts -name *.sh)
|
2022-04-01 18:01:05 -05:00
|
|
|
GO_BUILD_FLAGS += $(if $(GO_BUILD_DEV),-dev)
|
|
|
|
GO_BUILD_FLAGS += $(if $(GO_BUILD_TAGS),-build-tags=$(GO_BUILD_TAGS))
|
2019-03-27 11:53:49 -05:00
|
|
|
|
2016-04-25 11:44:26 -05:00
|
|
|
all: deps build
|
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
##@ Dependencies
|
|
|
|
|
|
|
|
deps-go: ## Install backend dependencies.
|
2019-07-11 13:55:35 -05:00
|
|
|
$(GO) run build.go setup
|
2016-10-11 01:51:44 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
deps-js: node_modules ## Install frontend dependencies.
|
|
|
|
|
|
|
|
deps: deps-js ## Install all dependencies.
|
|
|
|
|
|
|
|
node_modules: package.json yarn.lock ## Install node modules.
|
|
|
|
@echo "install frontend dependencies"
|
2021-10-08 09:19:10 -05:00
|
|
|
YARN_ENABLE_PROGRESS_BARS=false yarn install --immutable
|
2016-04-25 11:44:26 -05:00
|
|
|
|
2022-02-08 06:38:43 -06:00
|
|
|
##@ Swagger
|
|
|
|
SPEC_TARGET = public/api-spec.json
|
|
|
|
MERGED_SPEC_TARGET := public/api-merged.json
|
2022-05-23 14:08:27 -05:00
|
|
|
NGALERT_SPEC_TARGET = pkg/services/ngalert/api/tooling/api.json
|
2022-02-08 06:38:43 -06:00
|
|
|
|
|
|
|
$(NGALERT_SPEC_TARGET):
|
2022-05-23 14:08:27 -05:00
|
|
|
+$(MAKE) -C pkg/services/ngalert/api/tooling api.json
|
2022-02-08 06:38:43 -06:00
|
|
|
|
2022-07-20 08:09:42 -05:00
|
|
|
$(MERGED_SPEC_TARGET): $(SPEC_TARGET) $(NGALERT_SPEC_TARGET) $(SWAGGER) ## Merge generated and ngalert API specs
|
|
|
|
# known conflicts DsPermissionType, AddApiKeyCommand, Json, Duration (identical models referenced by both specs)
|
|
|
|
$(SWAGGER) mixin $(SPEC_TARGET) $(NGALERT_SPEC_TARGET) --ignore-conflicts -o $(MERGED_SPEC_TARGET)
|
2022-02-08 06:38:43 -06:00
|
|
|
|
2022-08-02 11:42:48 -05:00
|
|
|
$(SPEC_TARGET): $(SWAGGER) ## Generate API Swagger specification
|
|
|
|
SWAGGER_GENERATE_EXTENSION=false $(SWAGGER) generate spec -m -w pkg/server -o $(SPEC_TARGET) \
|
2022-02-08 06:38:43 -06:00
|
|
|
-x "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions" \
|
|
|
|
-x "github.com/prometheus/alertmanager" \
|
2022-10-14 08:51:05 -05:00
|
|
|
-i pkg/api/swagger_tags.json \
|
|
|
|
--exclude-tag=alpha
|
2022-02-08 06:38:43 -06:00
|
|
|
|
2022-08-02 11:42:48 -05:00
|
|
|
swagger-api-spec: gen-go $(SPEC_TARGET) $(MERGED_SPEC_TARGET) validate-api-spec
|
2022-02-08 06:38:43 -06:00
|
|
|
|
2022-06-30 01:58:07 -05:00
|
|
|
validate-api-spec: $(MERGED_SPEC_TARGET) $(SWAGGER) ## Validate API spec
|
2022-06-27 02:54:31 -05:00
|
|
|
$(SWAGGER) validate $(<)
|
2022-06-14 05:35:22 -05:00
|
|
|
|
2022-02-08 06:38:43 -06:00
|
|
|
clean-api-spec:
|
2022-08-04 11:51:12 -05:00
|
|
|
rm $(SPEC_TARGET) $(MERGED_SPEC_TARGET) $(OAPI_SPEC_TARGET)
|
2022-02-08 06:38:43 -06:00
|
|
|
|
2022-08-04 11:51:12 -05:00
|
|
|
##@ OpenAPI 3
|
|
|
|
OAPI_SPEC_TARGET = public/openapi3.json
|
|
|
|
|
|
|
|
openapi3-gen: swagger-api-spec ## Generates OpenApi 3 specs from the Swagger 2 already generated
|
|
|
|
$(GO) run scripts/openapi3/openapi3conv.go $(MERGED_SPEC_TARGET) $(OAPI_SPEC_TARGET)
|
2016-10-11 01:51:44 -05:00
|
|
|
|
2022-08-04 11:51:12 -05:00
|
|
|
##@ Building
|
2022-05-26 20:21:37 -05:00
|
|
|
gen-cue: ## Do all CUE/Thema code generation
|
|
|
|
@echo "generate code from .cue files"
|
|
|
|
go generate ./pkg/framework/coremodel
|
|
|
|
go generate ./public/app/plugins
|
|
|
|
|
2022-06-15 08:47:04 -05:00
|
|
|
gen-go: $(WIRE) gen-cue
|
2021-08-25 08:11:22 -05:00
|
|
|
@echo "generate go files"
|
2021-11-17 13:43:09 -06:00
|
|
|
$(WIRE) gen -tags $(WIRE_TAGS) ./pkg/server ./pkg/cmd/grafana-cli/runner
|
2021-08-25 08:11:22 -05:00
|
|
|
|
2022-11-03 10:04:39 -05:00
|
|
|
gen-jsonnet:
|
|
|
|
go generate ./devenv/dev-dashboards
|
|
|
|
|
2022-02-08 06:38:43 -06:00
|
|
|
build-go: $(MERGED_SPEC_TARGET) gen-go ## Build all Go binaries.
|
2019-03-27 11:53:49 -05:00
|
|
|
@echo "build go files"
|
2022-04-01 18:01:05 -05:00
|
|
|
$(GO) run build.go $(GO_BUILD_FLAGS) build
|
2016-10-11 01:51:44 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
build-server: ## Build Grafana server.
|
2019-03-27 11:53:49 -05:00
|
|
|
@echo "build server"
|
2022-04-01 18:01:05 -05:00
|
|
|
$(GO) run build.go $(GO_BUILD_FLAGS) build-server
|
2018-03-06 16:59:45 -06:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
build-cli: ## Build Grafana CLI application.
|
2021-08-17 05:06:33 -05:00
|
|
|
@echo "build grafana-cli"
|
2022-04-01 18:01:05 -05:00
|
|
|
$(GO) run build.go $(GO_BUILD_FLAGS) build-cli
|
2018-03-06 16:59:45 -06:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
build-js: ## Build frontend assets.
|
2019-03-27 11:53:49 -05:00
|
|
|
@echo "build frontend"
|
2018-03-06 16:59:45 -06:00
|
|
|
yarn run build
|
2020-05-18 03:22:45 -05:00
|
|
|
yarn run plugins:build-bundled
|
2016-04-25 11:44:26 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
build: build-go build-js ## Build backend and frontend.
|
2016-10-11 01:51:44 -05:00
|
|
|
|
2022-06-21 04:08:08 -05:00
|
|
|
run: $(BRA) ## Build and run web server on filesystem changes.
|
|
|
|
$(BRA) run
|
2018-04-20 13:28:52 -05:00
|
|
|
|
2019-11-12 04:08:40 -06:00
|
|
|
run-frontend: deps-js ## Fetch js dependencies and watch frontend for rebuild
|
|
|
|
yarn start
|
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
##@ Testing
|
|
|
|
|
2022-07-19 03:04:38 -05:00
|
|
|
.PHONY: test-go
|
|
|
|
test-go: test-go-unit test-go-integration
|
|
|
|
|
|
|
|
.PHONY: test-go-unit
|
|
|
|
test-go-unit: ## Run unit tests for backend with flags.
|
|
|
|
@echo "test backend unit tests"
|
|
|
|
$(GO) test -short -covermode=atomic -timeout=30m ./pkg/...
|
|
|
|
|
|
|
|
.PHONY: test-go-integration
|
|
|
|
test-go-integration: ## Run integration tests for backend with flags.
|
|
|
|
@echo "test backend integration tests"
|
|
|
|
$(GO) test -run Integration -covermode=atomic -timeout=30m ./pkg/...
|
|
|
|
|
|
|
|
.PHONY: test-go-integration-postgres
|
|
|
|
test-go-integration-postgres: devenv-postgres ## Run integration tests for postgres backend with flags.
|
|
|
|
@echo "test backend integration postgres tests"
|
|
|
|
$(GO) clean -testcache
|
2022-10-10 02:27:04 -05:00
|
|
|
$(GO) list './pkg/...' | xargs -I {} sh -c 'GRAFANA_TEST_DB=postgres go test -run Integration -covermode=atomic -timeout=2m {}'
|
2022-07-19 03:04:38 -05:00
|
|
|
|
|
|
|
.PHONY: test-go-integration-mysql
|
|
|
|
test-go-integration-mysql: devenv-mysql ## Run integration tests for mysql backend with flags.
|
|
|
|
@echo "test backend integration mysql tests"
|
|
|
|
$(GO) clean -testcache
|
2022-10-10 02:27:04 -05:00
|
|
|
$(GO) list './pkg/...' | xargs -I {} sh -c 'GRAFANA_TEST_DB=mysql go test -run Integration -covermode=atomic -timeout=2m {}'
|
2016-10-11 01:51:44 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
test-js: ## Run tests for frontend.
|
2019-03-27 11:53:49 -05:00
|
|
|
@echo "test frontend"
|
2018-03-06 16:59:45 -06:00
|
|
|
yarn test
|
2016-04-25 11:44:26 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
test: test-go test-js ## Run all tests.
|
2016-10-11 01:51:44 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
##@ Linting
|
2022-06-17 12:46:20 -05:00
|
|
|
golangci-lint: $(GOLANGCI_LINT)
|
2019-10-22 09:03:22 -05:00
|
|
|
@echo "lint via golangci-lint"
|
2022-06-17 12:46:20 -05:00
|
|
|
$(GOLANGCI_LINT) run \
|
2022-09-12 05:03:49 -05:00
|
|
|
--config .golangci.toml \
|
2019-10-22 09:03:22 -05:00
|
|
|
$(GO_FILES)
|
|
|
|
|
2021-09-21 09:30:47 -05:00
|
|
|
lint-go: golangci-lint ## Run all code checks for backend. You can use GO_FILES to specify exact files to check
|
2019-07-02 08:06:59 -05:00
|
|
|
|
2019-07-23 05:12:33 -05:00
|
|
|
# with disabled SC1071 we are ignored some TCL,Expect `/usr/bin/env expect` scripts
|
2019-10-22 09:03:22 -05:00
|
|
|
shellcheck: $(SH_FILES) ## Run checks for shell scripts.
|
2019-07-23 05:12:33 -05:00
|
|
|
@docker run --rm -v "$$PWD:/mnt" koalaman/shellcheck:stable \
|
2019-10-02 03:11:15 -05:00
|
|
|
$(SH_FILES) -e SC1071 -e SC2162
|
2019-07-23 05:12:33 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
##@ Docker
|
|
|
|
|
|
|
|
build-docker-full: ## Build Docker image for development.
|
|
|
|
@echo "build docker container"
|
|
|
|
docker build --tag grafana/grafana:dev .
|
|
|
|
|
2022-02-08 06:38:43 -06:00
|
|
|
build-docker-full-ubuntu: ## Build Docker image based on Ubuntu for development.
|
|
|
|
@echo "build docker container"
|
|
|
|
docker build --tag grafana/grafana:dev-ubuntu -f ./Dockerfile.ubuntu .
|
|
|
|
|
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
##@ Services
|
2019-07-02 08:06:59 -05:00
|
|
|
|
2019-05-24 20:38:01 -05:00
|
|
|
# create docker-compose file with provided sources and start them
|
2022-08-29 09:36:06 -05:00
|
|
|
# example: make devenv sources=postgres,auth/openldap
|
2019-05-28 11:32:14 -05:00
|
|
|
ifeq ($(sources),)
|
|
|
|
devenv:
|
|
|
|
@printf 'You have to define sources for this command \nexample: make devenv sources=postgres,openldap\n'
|
|
|
|
else
|
2019-10-22 09:03:22 -05:00
|
|
|
devenv: devenv-down ## Start optional services, e.g. postgres, prometheus, and elasticsearch.
|
2019-05-24 20:38:01 -05:00
|
|
|
$(eval targets := $(shell echo '$(sources)' | tr "," " "))
|
|
|
|
|
|
|
|
@cd devenv; \
|
2019-05-28 11:32:14 -05:00
|
|
|
./create_docker_compose.sh $(targets) || \
|
2019-07-16 01:16:11 -05:00
|
|
|
(rm -rf {docker-compose.yaml,conf.tmp,.env}; exit 1)
|
2019-05-28 11:32:14 -05:00
|
|
|
|
|
|
|
@cd devenv; \
|
2019-06-03 13:09:29 -05:00
|
|
|
docker-compose up -d --build
|
2019-05-28 11:32:14 -05:00
|
|
|
endif
|
2019-05-24 20:38:01 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
devenv-down: ## Stop optional services.
|
2019-05-28 11:32:14 -05:00
|
|
|
@cd devenv; \
|
2019-05-28 12:08:27 -05:00
|
|
|
test -f docker-compose.yaml && \
|
|
|
|
docker-compose down || exit 0;
|
2019-10-22 09:03:22 -05:00
|
|
|
|
2022-07-19 03:04:38 -05:00
|
|
|
devenv-postgres:
|
|
|
|
@cd devenv; \
|
|
|
|
sources=postgres_tests
|
|
|
|
|
|
|
|
devenv-mysql:
|
|
|
|
@cd devenv; \
|
|
|
|
sources=mysql_tests
|
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
##@ Helpers
|
|
|
|
|
2020-04-21 09:16:41 -05:00
|
|
|
# We separate the protobuf generation because most development tasks on
|
|
|
|
# Grafana do not involve changing protobuf files and protoc is not a
|
|
|
|
# go-gettable dependency and so getting it installed can be inconvenient.
|
|
|
|
#
|
|
|
|
# If you are working on changes to protobuf interfaces you may either use
|
|
|
|
# this target or run the individual scripts below directly.
|
|
|
|
protobuf: ## Compile protobuf definitions
|
|
|
|
bash scripts/protobuf-check.sh
|
|
|
|
bash pkg/plugins/backendplugin/pluginextensionv2/generate.sh
|
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
clean: ## Clean up intermediate build artifacts.
|
|
|
|
@echo "cleaning"
|
|
|
|
rm -rf node_modules
|
|
|
|
rm -rf public/build
|
|
|
|
|
2021-11-15 13:45:35 -06:00
|
|
|
gen-ts:
|
|
|
|
@echo "generating TypeScript definitions"
|
|
|
|
go get github.com/tkrajina/typescriptify-golang-structs/typescriptify@v0.1.7
|
|
|
|
tscriptify -interface -package=github.com/grafana/grafana/pkg/services/live/pipeline -import="import { FieldConfig } from '@grafana/data'" -target=public/app/features/live/pipeline/models.gen.ts pkg/services/live/pipeline/config.go
|
|
|
|
go mod tidy
|
|
|
|
|
2021-07-14 07:40:28 -05:00
|
|
|
# This repository's configuration is protected (https://readme.drone.io/signature/).
|
2021-08-12 03:39:09 -05:00
|
|
|
# Use this make target to regenerate the configuration YAML files when
|
2021-07-14 07:40:28 -05:00
|
|
|
# you modify starlark files.
|
2021-10-21 15:28:57 -05:00
|
|
|
drone: $(DRONE)
|
2021-10-14 09:02:45 -05:00
|
|
|
$(DRONE) starlark --format
|
2021-11-30 04:53:07 -06:00
|
|
|
$(DRONE) lint .drone.yml --trusted
|
2021-10-14 09:02:45 -05:00
|
|
|
$(DRONE) --server https://drone.grafana.net sign --save grafana/grafana
|
2021-07-14 07:40:28 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
help: ## Display this help.
|
|
|
|
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
|