aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/Makefile
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-09-17 15:29:27 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-17 15:29:27 +0000
commitacfc52396351261756b6d319d7578f2277f2d272 (patch)
tree702a86d008f02d018497e7ac74ad9ae1b72c47f0 /src/k8splugin/Makefile
parent4416616ae34f7b0410b67d69a6d44011f2946484 (diff)
parentb338d303aa7078a84d50989ddc845a6ce938accf (diff)
Merge "Separate tests"
Diffstat (limited to 'src/k8splugin/Makefile')
-rw-r--r--src/k8splugin/Makefile26
1 files changed, 19 insertions, 7 deletions
diff --git a/src/k8splugin/Makefile b/src/k8splugin/Makefile
index 6171d8c2..34b51982 100644
--- a/src/k8splugin/Makefile
+++ b/src/k8splugin/Makefile
@@ -18,29 +18,41 @@ export GOPATH ...
all: clean dep
CGO_ENABLED=1 GOOS=linux GOARCH=amd64
@find plugins -type d -not -path plugins -exec sh -c "ls {}/plugin.go | xargs go build -buildmode=plugin -a -tags netgo -o $(basename {}).so" \;
- go build -a -tags netgo -o ./k8plugin ./cmd/main.go
+ @go build -a -tags netgo -o ./k8plugin ./cmd/main.go
# The following is done this way as each patch on CI runs build and each merge runs deploy. So for build we don't need to build binary and hence
# no need to create a static binary with additional flags. However, for generating binary, additional build flags are necessary. This if used with
# mock plugin errors out for unit tests. So the seperation avoids the error.
-build: clean dep plugins tests
+build: clean dep plugins test
deploy: build
-tests:
- go build -buildmode=plugin -o ./mock_files/mock_plugins/mockplugin.so ./mock_files/mock_plugins/mockplugin.go
- go test -v ./... -cover
+.PHONY: test
+test: unit integration
+.PHONY: unit
+unit:
+ @go test -v -tags 'unit' ./...
+
+.PHONY: integration
+integration: clean
+ @go build -buildmode=plugin -o ./mock_files/mock_plugins/mockplugin.so ./mock_files/mock_plugins/mockplugin.go
+ @go test -v -tags 'integration' ./...
+
+.PHONY: format
format:
- go fmt ./...
+ @go fmt ./...
+.PHONY: plugins
plugins:
@find plugins -type d -not -path plugins -exec sh -c "ls {}/plugin.go | xargs go build -buildmode=plugin -o $(basename {}).so" \;
+.PHONY: dep
dep:
- go get -u $(DEPENDENCIES)
+ @go get -u $(DEPENDENCIES)
$(GOPATH)/bin/dep ensure
+.PHONY: clean
clean:
find . -name "*so" -delete
@rm -f k8plugin