We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eab040a commit 3213a64Copy full SHA for 3213a64
Makefile
@@ -2,17 +2,20 @@ NAME := mariadb-toolbox
2
TAG := `git describe --long --tags --dirty --always`
3
IMAGE_NAME := panubo/$(NAME)
4
5
-.PHONY: help build test clean push
+.PHONY: *
6
7
help:
8
@printf "$$(grep -hE '^\S+:.*##' $(MAKEFILE_LIST) | sed -e 's/:.*##\s*/:/' -e 's/^\(.\+\):\(.*\)/\\x1b[36m\1\\x1b[m:\2/' | column -c2 -t -s :)\n"
9
10
build: ## Builds docker image
11
docker build --pull -t $(IMAGE_NAME):$(TAG) .
12
13
-test: ## Run tests
+test: ## Run tests (dind)
14
./tests/dind-runner.sh
15
16
+test-local: ## Run tests (local)
17
+ ./tests/runner.sh
18
+
19
clean: ## Remove built image
20
docker rmi $(IMAGE_NAME):$(TAG)
21
0 commit comments