Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 1 | # Copyright 2018 the original author or authors. |
| 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. |
Matt Jeanneret | f3ad685 | 2019-02-08 18:21:44 -0500 | [diff] [blame] | 14 | |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 15 | # Configure shell |
| 16 | SHELL = bash -eu -o pipefail |
Matt Jeanneret | f3ad685 | 2019-02-08 18:21:44 -0500 | [diff] [blame] | 17 | |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 18 | default: help |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 19 | |
| 20 | # This should to be the first and default target in this Makefile |
| 21 | help: |
| 22 | @echo "Usage: make [<target>]" |
| 23 | @echo "where available targets are:" |
| 24 | @echo |
Matt Jeanneret | f3ad685 | 2019-02-08 18:21:44 -0500 | [diff] [blame] | 25 | @echo "clean : Remove files created by the build and tests" |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 26 | @echo "dist : Create source distribution of the python package" |
Matt Jeanneret | f3ad685 | 2019-02-08 18:21:44 -0500 | [diff] [blame] | 27 | @echo "help : Print this help" |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 28 | @echo "test : Run all unit test" |
| 29 | @echo "upload : Upload test version of python package to test.pypi.org" |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 30 | @echo |
| 31 | |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 32 | # ignore these directories |
| 33 | .PHONY: test dist |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 34 | |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 35 | dist: |
| 36 | @ echo "Creating python source distribution" |
William Kurkian | 3b144f1 | 2019-06-11 20:36:15 -0400 | [diff] [blame] | 37 | rm -rf dist/ |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 38 | python setup.py sdist |
| 39 | |
| 40 | upload: dist |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 41 | @ echo "Uploading sdist to test.pypi.org" |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 42 | twine upload --repository-url https://test.pypi.org/legacy/ dist/* |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 43 | |
Matt Jeanneret | 6a7950c | 2019-09-17 11:14:33 -0400 | [diff] [blame] | 44 | VENVDIR := venv-pyvoltha |
| 45 | |
| 46 | venv: |
Zack Williams | 84a71e9 | 2019-11-15 09:00:19 -0700 | [diff] [blame] | 47 | virtualenv --python=python3.6 ${VENVDIR};\ |
| 48 | source ./${VENVDIR}/bin/activate ; set -u ;\ |
| 49 | pip install -r requirements.txt |
Matt Jeanneret | 6a7950c | 2019-09-17 11:14:33 -0400 | [diff] [blame] | 50 | |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 51 | test: |
| 52 | @ echo "Executing unit tests w/tox" |
| 53 | tox |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 54 | |
| 55 | clean: |
| 56 | find . -name '*.pyc' | xargs rm -f |
Matt Jeanneret | c233b2e | 2019-12-07 15:46:11 -0500 | [diff] [blame^] | 57 | find . -name '__pycache__' | xargs rm -rf |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 58 | rm -rf \ |
| 59 | .tox \ |
Zack Williams | 84a71e9 | 2019-11-15 09:00:19 -0700 | [diff] [blame] | 60 | .coverage \ |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 61 | coverage.xml \ |
| 62 | dist \ |
| 63 | nose-results.xml \ |
| 64 | pyvoltha.egg-info \ |
Matt Jeanneret | 6a7950c | 2019-09-17 11:14:33 -0400 | [diff] [blame] | 65 | test/unit/tmp \ |
| 66 | rm -rf ${VENVDIR} |
| 67 | |
| 68 | # end file |