Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 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 | |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 15 | # use bash for pushd/popd, and to fail quickly. virtualenv's activate |
| 16 | # has undefined variables, so no -u |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 17 | SHELL := bash -e -o pipefail |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 18 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 19 | ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 20 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 21 | # Configuration and lists of files for linting/testing |
| 22 | VERSION ?= $(shell cat ./VERSION) |
| 23 | LINT_ARGS ?= --verbose --configure LineTooLong:120 -e LineTooLong \ |
Hardik Windlass | 8f2aadc | 2020-03-16 20:16:39 +0530 | [diff] [blame] | 24 | --configure TooManyTestSteps:40 -e TooManyTestSteps \ |
Scott Baker | 27d04db | 2020-02-06 18:03:21 -0800 | [diff] [blame] | 25 | --configure TooManyTestCases:50 -e TooManyTestCases \ |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 26 | --configure TooFewTestSteps:1 \ |
| 27 | --configure TooFewKeywordSteps:1 \ |
| 28 | --configure FileTooLong:600 -e FileTooLong \ |
| 29 | -e TrailingWhitespace |
| 30 | |
| 31 | PYTHON_FILES := $(wildcard libraries/*.py) |
| 32 | ROBOT_FILES := $(shell find . -name *.robot -print) |
| 33 | YAML_FILES := $(shell find ./tests -type f \( -name *.yaml -o -name *.yml \) -print) |
| 34 | JSON_FILES := $(shell find ./tests -name *.json -print) |
| 35 | |
| 36 | # Robot config |
| 37 | ROBOT_SANITY_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 38 | ROBOT_SANITY_DT_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-dt.yaml |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 39 | ROBOT_FAIL_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml |
| 40 | ROBOT_SANITY_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2x2.yaml |
| 41 | ROBOT_SCALE_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-16.yaml |
| 42 | ROBOT_SCALE_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-8x2.yaml |
| 43 | ROBOT_DEBUG_LOG_OPT ?= |
| 44 | ROBOT_MISC_ARGS ?= |
| 45 | |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 46 | # for backwards compatibility |
| 47 | sanity-kind: sanity-single-kind |
| 48 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 49 | # for scale pipeline |
| 50 | voltha-scale: ROBOT_MISC_ARGS += -i activation $(ROBOT_DEBUG_LOG_OPT) |
| 51 | voltha-scale: voltha-scale-test |
| 52 | |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 53 | # target to invoke DT Workflow Sanity |
| 54 | sanity-kind-dt: ROBOT_MISC_ARGS += -i sanityDt $(ROBOT_DEBUG_LOG_OPT) |
| 55 | sanity-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 56 | sanity-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot |
| 57 | sanity-kind-dt: voltha-dt-test |
| 58 | |
Andy Bavier | 8da0e13 | 2020-04-13 10:25:16 -0700 | [diff] [blame] | 59 | functional-single-kind: ROBOT_MISC_ARGS += -i sanityORfunctional $(ROBOT_DEBUG_LOG_OPT) |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 60 | functional-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 61 | functional-single-kind: bbsim-kind |
| 62 | |
Hardik Windlass | 35706ba | 2020-02-20 08:16:42 +0000 | [diff] [blame] | 63 | # target to invoke DT Workflow Functional scenarios |
Andy Bavier | 8da0e13 | 2020-04-13 10:25:16 -0700 | [diff] [blame] | 64 | functional-single-kind-dt: ROBOT_MISC_ARGS += -i sanityDtORfunctionalDt $(ROBOT_DEBUG_LOG_OPT) |
Hardik Windlass | 35706ba | 2020-02-20 08:16:42 +0000 | [diff] [blame] | 65 | functional-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 66 | functional-single-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot |
| 67 | functional-single-kind-dt: voltha-dt-test |
| 68 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 69 | # target to invoke openonu go adapter |
| 70 | openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:4 -v testmode:SingleState -v timeout:120s |
| 71 | openonu-go-adapter-test: ROBOT_MISC_ARGS += -i statetest $(ROBOT_DEBUG_LOG_OPT) |
| 72 | openonu-go-adapter-test: ROBOT_MISC_ARGS += -X |
| 73 | openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 74 | openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot |
| 75 | openonu-go-adapter-test: openonu-go-adapter-statetest |
| 76 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 77 | sanity-single-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 78 | sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 79 | sanity-single-kind: bbsim-kind |
| 80 | |
David Bainbridge | 32c4563 | 2020-04-13 08:47:09 -0700 | [diff] [blame] | 81 | rwcore-restart-single-kind: ROBOT_MISC_ARGS += -X -i functionalANDrwcore-restart $(ROBOT_DEBUG_LOG_OPT) |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 82 | rwcore-restart-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE) |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 83 | rwcore-restart-single-kind: ROBOT_FILE := Voltha_FailureScenarios.robot |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 84 | rwcore-restart-single-kind: voltha-test |
| 85 | |
David Bainbridge | 3d6d5d3 | 2019-12-17 19:05:35 +0000 | [diff] [blame] | 86 | single-kind: ROBOT_MISC_ARGS += -X -i $(TEST_TAGS) $(ROBOT_DEBUG_LOG_OPT) |
| 87 | single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 88 | single-kind: ROBOT_FILE := Voltha_PODTests.robot |
| 89 | single-kind: voltha-test |
| 90 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 91 | sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 92 | sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 93 | sanity-multi-kind: bbsim-kind |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 94 | |
Andy Bavier | 8da0e13 | 2020-04-13 10:25:16 -0700 | [diff] [blame] | 95 | functional-multi-kind: ROBOT_MISC_ARGS += -i sanityORfunctional $(ROBOT_DEBUG_LOG_OPT) |
| 96 | functional-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 97 | functional-multi-kind: bbsim-kind |
| 98 | |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 99 | bbsim-kind: ROBOT_MISC_ARGS += -X |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 100 | bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot |
| 101 | bbsim-kind: voltha-test |
| 102 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 103 | scale-single-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 104 | scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE) |
| 105 | scale-single-kind: bbsim-scale-kind |
| 106 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 107 | scale-multi-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 108 | scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE) |
| 109 | scale-multi-kind: bbsim-scale-kind |
| 110 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 111 | bbsim-scale-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 112 | bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot |
| 113 | bbsim-scale-kind: voltha-test |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 114 | |
hwchiu | ab524f0 | 2020-02-03 23:24:19 +0000 | [diff] [blame] | 115 | #Only supported in full mode |
| 116 | system-scale-test: ROBOT_FILE := K8S_SystemTest.robot |
hwchiu | 56eb85c | 2020-02-05 01:05:53 +0000 | [diff] [blame] | 117 | system-scale-test: ROBOT_MISC_ARGS += -X -i functional $(ROBOT_DEBUG_LOG_OPT) |
hwchiu | ab524f0 | 2020-02-03 23:24:19 +0000 | [diff] [blame] | 118 | system-scale-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 119 | system-scale-test: voltha-test |
hwchiu | 1128912 | 2019-11-27 16:20:15 +0000 | [diff] [blame] | 120 | |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 121 | failure-test: ROBOT_MISC_ARGS += -X -i FailureTest $(ROBOT_DEBUG_LOG_OPT) |
hwchiu | 3d9a098 | 2020-02-06 00:19:19 +0000 | [diff] [blame] | 122 | failure-test: ROBOT_FILE := K8S_SystemTest.robot |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 123 | failure-test: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE) |
| 124 | failure-test: voltha-test |
| 125 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 126 | bbsim-alarms-kind: ROBOT_MISC_ARGS += -X -i active |
| 127 | bbsim-alarms-kind: ROBOT_FILE := Voltha_AlarmTests.robot |
Andy Bavier | e118e05 | 2020-03-06 12:49:24 -0700 | [diff] [blame] | 128 | bbsim-alarms-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 129 | bbsim-alarms-kind: voltctl-docker-image-build voltctl-docker-image-install-kind voltha-test |
| 130 | |
Andy Bavier | c1904dc | 2020-03-20 11:39:15 -0700 | [diff] [blame] | 131 | bbsim-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
| 132 | bbsim-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot |
| 133 | bbsim-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 134 | bbsim-errorscenarios: voltha-test |
| 135 | |
Hardik Windlass | cbcca31 | 2020-04-20 21:46:11 +0530 | [diff] [blame] | 136 | bbsim-errorscenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
| 137 | bbsim-errorscenarios-dt: ROBOT_FILE := Voltha_ErrorScenarios.robot |
| 138 | bbsim-errorscenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 139 | bbsim-errorscenarios-dt: voltha-test |
| 140 | |
Hardik Windlass | e05e471 | 2020-04-29 10:40:42 +0530 | [diff] [blame] | 141 | bbsim-failurescenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot |
Andy Bavier | 8da0e13 | 2020-04-13 10:25:16 -0700 | [diff] [blame] | 142 | bbsim-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot |
| 143 | bbsim-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 144 | bbsim-failurescenarios: voltha-test |
| 145 | |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 146 | bbsim-failurescenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitchOnuRebootDt -e PhysicalOltRebootDt |
| 147 | bbsim-failurescenarios-dt: ROBOT_FILE := Voltha_DT_FailureScenarios.robot |
| 148 | bbsim-failurescenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 149 | bbsim-failurescenarios-dt: voltha-dt-test |
| 150 | |
Andy Bavier | 70eab04 | 2019-12-14 14:16:26 -0700 | [diff] [blame] | 151 | voltha-test: ROBOT_MISC_ARGS += -e notready |
hwchiu | 1128912 | 2019-11-27 16:20:15 +0000 | [diff] [blame] | 152 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 153 | voltha-test: vst_venv |
| 154 | source ./$</bin/activate ; set -u ;\ |
| 155 | cd tests/functional ;\ |
| 156 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 157 | |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 158 | voltha-dt-test: vst_venv |
| 159 | source ./$</bin/activate ; set -u ;\ |
| 160 | cd tests/dt-workflow ;\ |
| 161 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 162 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 163 | voltha-scale-test: vst_venv |
| 164 | source ./$</bin/activate ; set -u ;\ |
| 165 | cd tests/scale ;\ |
| 166 | robot $(ROBOT_MISC_ARGS) Voltha_Scale_Tests.robot |
| 167 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 168 | openonu-go-adapter-statetest: vst_venv |
| 169 | source ./$</bin/activate ; set -u ;\ |
| 170 | cd tests/openonu-go-adapter ;\ |
| 171 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 172 | |
| 173 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 174 | # self-test, lint, and setup targets |
| 175 | |
| 176 | # virtualenv for the robot tools |
Andy Bavier | 952b95b | 2020-03-06 09:53:42 -0700 | [diff] [blame] | 177 | # VOL-2724 Invoke pip via python3 to avoid pathname too long on QA jobs |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 178 | vst_venv: |
| 179 | virtualenv -p python3 $@ ;\ |
| 180 | source ./$@/bin/activate ;\ |
Andy Bavier | e118e05 | 2020-03-06 12:49:24 -0700 | [diff] [blame] | 181 | python -m pip install -r requirements.txt |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 182 | |
| 183 | test: lint |
| 184 | |
| 185 | lint: lint-robot lint-python lint-yaml lint-json |
| 186 | |
| 187 | lint-robot: vst_venv |
| 188 | source ./$</bin/activate ; set -u ;\ |
| 189 | rflint $(LINT_ARGS) $(ROBOT_FILES) |
| 190 | |
| 191 | # check deps for format and python3 cleanliness |
| 192 | lint-python: vst_venv |
| 193 | source ./$</bin/activate ; set -u ;\ |
| 194 | pylint --py3k $(PYTHON_FILES) ;\ |
| 195 | flake8 --max-line-length=99 --count $(PYTHON_FILES) |
| 196 | |
| 197 | lint-yaml: vst_venv |
| 198 | source ./$</bin/activate ; set -u ;\ |
| 199 | yamllint -s $(YAML_FILES) |
| 200 | |
| 201 | lint-json: vst_venv |
| 202 | source ./$</bin/activate ; set -u ;\ |
| 203 | for jsonfile in $(JSON_FILES); do \ |
| 204 | echo "Validating json file: $$jsonfile" ;\ |
| 205 | python -m json.tool $$jsonfile > /dev/null ;\ |
| 206 | done |
| 207 | |
| 208 | # tidy target will be more useful once issue with removing leading comments |
| 209 | # is resolved: https://github.com/robotframework/robotframework/issues/3263 |
| 210 | tidy-robot: vst_venv |
| 211 | source ./$</bin/activate ; set -u ;\ |
| 212 | python -m robot.tidy --inplace $(ROBOT_FILES); |
| 213 | |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 214 | # Install the 'kail' tool if needed: https://github.com/boz/kail |
| 215 | KAIL_PATH ?= /usr/local/bin |
| 216 | $(KAIL_PATH)/kail: |
| 217 | bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b /tmp |
| 218 | mv /tmp/kail $(KAIL_PATH) |
| 219 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 220 | ## Variables for gendocs |
| 221 | TEST_SOURCE := $(wildcard tests/*/*.robot) |
| 222 | TEST_BASENAME := $(basename $(TEST_SOURCE)) |
| 223 | TEST_DIRS := $(dir $(TEST_SOURCE)) |
| 224 | |
| 225 | LIB_SOURCE := $(wildcard libraries/*.robot) |
| 226 | LIB_BASENAME := $(basename $(LIB_SOURCE)) |
| 227 | LIB_DIRS := $(dir $(LIB_SOURCE)) |
| 228 | |
| 229 | .PHONY: gendocs lint test |
| 230 | # In future explore use of --docformat REST - integration w/Sphinx? |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 231 | gendocs: vst_venv |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 232 | source ./$</bin/activate ; set -u ;\ |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 233 | mkdir -p $@ ;\ |
| 234 | for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\ |
| 235 | for dir in ${LIB_BASENAME}; do\ |
| 236 | python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\ |
| 237 | done ;\ |
| 238 | for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\ |
| 239 | for dir in ${TEST_BASENAME}; do\ |
| 240 | python -m robot.testdoc $$dir.robot $@/$$dir.html ;\ |
| 241 | done |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 242 | |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 243 | clean: |
| 244 | find . -name output.xml -print |
| 245 | |
| 246 | clean-all: clean |
| 247 | rm -rf vst_venv gendocs |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 248 | |
| 249 | voltctl-docker-image-build: |
| 250 | cd docker && docker build -t opencord/voltctl:local -f Dockerfile.voltctl . |
| 251 | |
| 252 | voltctl-docker-image-install-kind: |
| 253 | @if [ "`kind get clusters | grep voltha`" = '' ]; then echo "no voltha cluster found" && exit 1; fi |
| 254 | kind load docker-image --name `kind get clusters | grep voltha` opencord/voltctl:local |