blob: 7883b7f16ba643f5ab765b36187d1c4a6686f5b7 (
plain)
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
|
PWD := $(shell pwd)
PLATFORM := linux
BINARY := opa-pdp
all: test build
deploy: test build
build: build_image
deploy: build
.PHONY: test
test: clean
@go test -v ./...
format:
@go fmt ./...
clean:
@rm -f $(BINARY)
.PHONY: cover
cover:
@go test -p 2 ./... -coverprofile=coverage.out
@go tool cover -html=coverage.out -o coverage.html
build_image:
docker build -f Dockerfile -t policy-opa-pdp:1.0.0 .
docker tag policy-opa-pdp:1.0.0 nexus3.onap.org:10003/onap/policy-opa-pdp:latest
docker tag nexus3.onap.org:10003/onap/policy-opa-pdp:latest nexus3.onap.org:10003/onap/policy-opa-pdp:1.0.0
|