blob: 7c05b0c7859d6acd1e62ed247ba4a106de001cbf [file] [log] [blame]
subhash kumar singhce9cb6b2022-09-28 09:58:20 +00001# Copyright (c) 2022 Samsung
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15
Taewan Kim74c18da2023-08-28 16:21:51 +090016build: generate
subhash kumar singhce9cb6b2022-09-28 09:58:20 +000017 go build -o ricdms cmd/ric-dms.go
18
19generate:
20 swagger generate server -f api/ric-dms-api-2.0.yaml -t pkg/ --exclude-main
21
22run:
23 go run cmd/ric-dms.go
24
25test:
26 go clean -testcache
27 go test -timeout 30s -run ^Test gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/resthooks -v
28
29image:
30 docker build -t ric-dms:v1.0 .
31
32docker-run:
33 docker run -it --rm -d -p 8000:8000 ric-dms:v1.0
34
Taewan Kim74c18da2023-08-28 16:21:51 +090035all: generate build test image