-
Notifications
You must be signed in to change notification settings - Fork 23
/
Makefile
34 lines (25 loc) · 882 Bytes
/
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
# SPDX-FileCopyrightText: 2019-present Open Networking Foundation <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
.PHONY: all test clean version-check
COMPARISON_BRANCH ?= master
all: deps
lint: # @HELP run helm lint
./build/bin/helm_lint.sh
check-version: # @HELP run the version checker on the charts
COMPARISON_BRANCH=${COMPARISON_BRANCH} ./build/bin/version_check.sh all
test: # @HELP run the integration tests
test: deps license lint
clean:: # @HELP clean up temporary files for SD-RAN umbrella.
rm -rf sd-ran/charts sd-ran/Chart.lock
deps: # @HELP build dependencies for SD-RAN Umbrella local charts.
deps: clean
helm dep build sd-ran
helm dep build onos-exporter
license: # @HELP run license checks
rm -rf venv
python3 -m venv venv
. ./venv/bin/activate;\
python3 -m pip install --upgrade pip;\
python3 -m pip install reuse;\
reuse lint