aboutsummaryrefslogtreecommitdiff
path: root/python/pyarmnn/init_devenv.sh
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyarmnn/init_devenv.sh')
-rwxr-xr-xpython/pyarmnn/init_devenv.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/python/pyarmnn/init_devenv.sh b/python/pyarmnn/init_devenv.sh
deleted file mode 100755
index e7654a491a..0000000000
--- a/python/pyarmnn/init_devenv.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-set -e
-
-JENKINS_BUILD=0
-while getopts ":j" opt; do
- case "$opt" in
- j) JENKINS_BUILD=1 ;;
- esac
-done
-
-python3.6 -m venv toxenv
-source toxenv/bin/activate
-pip install virtualenv==16.3.0 tox
-
-export ARMNN_INCLUDE=$(pwd)/../../include
-python ./swig_generate.py
-
-tox -e devenv
-# If jenkins build, also run unit tests, generate docs, etc
-if [ $JENKINS_BUILD == 1 ]; then
- tox
- tox -e doc
-fi
-
-deactivate
-rm -rf toxenv
-
-source env/bin/activate