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-02-08 06:38:43 -06:00
|
|
|
API_DEFINITION_FILES = $(shell find ./pkg/api/docs/definitions -name '*.go' -print)
|
|
|
|
SWAGGER_TAG ?= latest
|
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
|
|
|
|
|
|
|
$(SPEC_TARGET): $(API_DEFINITION_FILES) ## Generate API spec
|
|
|
|
docker run --rm -it \
|
|
|
|
-e GOPATH=${HOME}/go:/go \
|
|
|
|
-e SWAGGER_GENERATE_EXTENSION=false \
|
|
|
|
-v ${HOME}/go:/go \
|
|
|
|
-v $$(pwd):/grafana \
|
2022-06-03 05:31:14 -05:00
|
|
|
-v $$(pwd)/../grafana-enterprise:$$(pwd)/../grafana-enterprise \
|
2022-02-08 06:38:43 -06:00
|
|
|
-w $$(pwd)/pkg/api/docs quay.io/goswagger/swagger:$(SWAGGER_TAG) \
|
|
|
|
generate spec -m -o /grafana/public/api-spec.json \
|
|
|
|
-w /grafana/pkg/server \
|
|
|
|
-x "grafana/grafana/pkg/services/ngalert/api/tooling/definitions" \
|
|
|
|
-x "github.com/prometheus/alertmanager" \
|
|
|
|
-i /grafana/pkg/api/docs/tags.json
|
|
|
|
|
2022-06-02 02:49:52 -05:00
|
|
|
swagger-api-spec: gen-go $(SPEC_TARGET) $(MERGED_SPEC_TARGET) validate-api-spec
|
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
|
|
|
|
|
|
|
$(MERGED_SPEC_TARGET): $(SPEC_TARGET) $(NGALERT_SPEC_TARGET) ## Merge generated and ngalert API specs
|
2022-05-23 14:08:27 -05:00
|
|
|
go run pkg/api/docs/merge/merge_specs.go -o=public/api-merged.json $(<) pkg/services/ngalert/api/tooling/api.json
|
2022-02-08 06:38:43 -06:00
|
|
|
|
|
|
|
ensure_go-swagger_mac:
|
|
|
|
@hash swagger &>/dev/null || (brew tap go-swagger/go-swagger && brew install go-swagger)
|
|
|
|
|
|
|
|
--swagger-api-spec-mac: ensure_go-swagger_mac $(API_DEFINITION_FILES) ## Generate API spec (for M1 Mac)
|
2022-06-03 05:31:14 -05:00
|
|
|
SWAGGER_GENERATE_EXTENSION=false swagger generate spec -m -w pkg/server -o public/api-spec.json \
|
2022-02-08 06:38:43 -06:00
|
|
|
-x "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions" \
|
|
|
|
-x "github.com/prometheus/alertmanager" \
|
|
|
|
-i pkg/api/docs/tags.json
|
|
|
|
|
2022-06-14 05:35:22 -05:00
|
|
|
swagger-api-spec-mac: gen-go --swagger-api-spec-mac $(MERGED_SPEC_TARGET) validate-api-spec-mac
|
2022-02-08 06:38:43 -06:00
|
|
|
|
|
|
|
validate-api-spec: $(MERGED_SPEC_TARGET) ## Validate API spec
|
|
|
|
docker run --rm -it \
|
|
|
|
-e GOPATH=${HOME}/go:/go \
|
|
|
|
-e SWAGGER_GENERATE_EXTENSION=false \
|
|
|
|
-v ${HOME}/go:/go \
|
|
|
|
-v $$(pwd):/grafana \
|
|
|
|
-w $$(pwd)/pkg/api/docs quay.io/goswagger/swagger:$(SWAGGER_TAG) \
|
|
|
|
validate /grafana/$(<)
|
|
|
|
|
2022-06-14 05:35:22 -05:00
|
|
|
validate-api-spec-mac: $(MERGED_SPEC_TARGET) ## Validate API spec
|
|
|
|
swagger validate $(<)
|
|
|
|
|
2022-02-08 06:38:43 -06:00
|
|
|
clean-api-spec:
|
|
|
|
rm $(SPEC_TARGET) $(MERGED_SPEC_TARGET)
|
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
##@ Building
|
2016-10-11 01:51:44 -05:00
|
|
|
|
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-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
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
scripts/go/bin/bra: scripts/go/go.mod
|
|
|
|
@cd scripts/go; \
|
|
|
|
$(GO) build -o ./bin/bra github.com/unknwon/bra
|
2018-08-02 10:42:28 -05:00
|
|
|
|
2019-10-22 09:03:22 -05:00
|
|
|
run: scripts/go/bin/bra ## Build and run web server on filesystem changes.
|
2021-06-29 03:01:21 -05:00
|
|
|
@scripts/go/bin/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
|
|
|
|
|
|
|
|
test-go: ## Run tests for backend.
|
2019-03-27 11:53:49 -05:00
|
|
|
@echo "test backend"
|
2019-07-11 13:55:35 -05:00
|
|
|
$(GO) test -v ./pkg/...
|
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
|
|
|
|
scripts/go/bin/golangci-lint: scripts/go/go.mod
|
|
|
|
@cd scripts/go; \
|
|
|
|
$(GO) build -o ./bin/golangci-lint github.com/golangci/golangci-lint/cmd/golangci-lint
|
|
|
|
|
|
|
|
golangci-lint: scripts/go/bin/golangci-lint
|
|
|
|
@echo "lint via golangci-lint"
|
|
|
|
@scripts/go/bin/golangci-lint run \
|
2020-06-29 07:08:32 -05:00
|
|
|
--config ./scripts/go/configs/.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
|
|
|
|
# example: make devenv sources=postgres,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
|
|
|
|
|
|
|
##@ 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)
|