forked from vmware-tanzu/kubeapps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
56 lines (41 loc) · 1.86 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
IMPORT_PATH:= github.com/kubeapps/kubeapps
GO = /usr/bin/env go
GOFMT = /usr/bin/env gofmt
IMAGE_TAG ?= dev-$(shell date +%FT%H-%M-%S-%Z)
VERSION ?= $$(git rev-parse HEAD)
default: all
include ./script/makefiles/cluster-kind.mk
include ./script/makefiles/cluster-kind-for-pinniped.mk
include ./script/makefiles/deploy-dev.mk
include ./script/makefiles/deploy-dev-for-pinniped.mk
IMG_MODIFIER ?=
GO_PACKAGES = ./...
# GO_FILES := $(shell find $(shell $(GO) list -f '{{.Dir}}' $(GO_PACKAGES)) -name \*.go)
all: kubeapps/dashboard kubeapps/apprepository-controller kubeapps/kubeops kubeapps/assetsvc kubeapps/asset-syncer kubeapps/pinniped-proxy kubeapps/kubeapps-apis
# TODO(miguel) Create Makefiles per component
# TODO(mnelson) Or at least don't send the whole repo as the context for each project.
# Currently the go projects include the whole repository as the docker context
# only because the shared pkg/ directories?
kubeapps/%:
DOCKER_BUILDKIT=1 docker build -t kubeapps/$*$(IMG_MODIFIER):$(IMAGE_TAG) --build-arg "VERSION=${VERSION}" -f cmd/$*/Dockerfile .
kubeapps/dashboard:
docker build -t kubeapps/dashboard$(IMG_MODIFIER):$(IMAGE_TAG) -f dashboard/Dockerfile dashboard/
test:
$(GO) test $(GO_PACKAGES)
test-db:
# It's not supported to run tests that involve a database in parallel since they are currently
# using the same PG schema. We need to run them sequentially
cd cmd/asset-syncer; ENABLE_PG_INTEGRATION_TESTS=1 go test -count=1 ./...
cd cmd/assetsvc; ENABLE_PG_INTEGRATION_TESTS=1 go test -count=1 ./...
test-all: test-apprepository-controller test-dashboard
test-dashboard:
yarn --cwd dashboard/ install --frozen-lockfile
yarn --cwd=dashboard run lint
CI=true yarn --cwd dashboard/ run test
test-%:
$(GO) test -v $(IMPORT_PATH)/cmd/$*
fmt:
$(GOFMT) -s -w $(GO_FILES)
vet:
$(GO) vet $(GO_PACKAGES)
.PHONY: default all test-all test test-dashboard fmt vet