From ce9cb6bc0ac6b43c3a3d5384ec1afcd72a96d8c5 Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Wed, 28 Sep 2022 09:58:20 +0000 Subject: [PATCH] Makefile for RICDMS Makefile defines operation to test, code-generataion, build and image preparation. Signed-off-by: subhash kumar singh Change-Id: I7fa56d6b2592e0eeb6f84de070a433c18579b975 --- Makefile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e5ed63d --- /dev/null +++ b/Makefile @@ -0,0 +1,35 @@ +# Copyright (c) 2022 Samsung +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +build: + go build -o ricdms cmd/ric-dms.go + +generate: + swagger generate server -f api/ric-dms-api-2.0.yaml -t pkg/ --exclude-main + +run: + go run cmd/ric-dms.go + +test: + go clean -testcache + go test -timeout 30s -run ^Test gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/resthooks -v + +image: + docker build -t ric-dms:v1.0 . + +docker-run: + docker run -it --rm -d -p 8000:8000 ric-dms:v1.0 + +all: generate build test image \ No newline at end of file -- 2.16.6