diff options
author | Vratko Polak <vrpolak@cisco.com> | 2018-06-20 12:56:41 +0200 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2018-06-20 12:56:41 +0200 |
commit | 2e63ef13b419da1198439617e66cb0f1cfe6be65 (patch) | |
tree | 634ba3c2134a3ed8c81f8ebdc1a9c4a2ef14712b /resources/tools/presentation/new/run_report.sh | |
parent | 39b4a07718ecab94ea331362edb62dfcf678bd09 (diff) |
CSIT-1110: Replace old trending with the new one
+ Remove /new/ folders in presentation and docs.
Change-Id: I870002ba8509189196e778aa1292b93e83a3ec17
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/tools/presentation/new/run_report.sh')
-rwxr-xr-x | resources/tools/presentation/new/run_report.sh | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/resources/tools/presentation/new/run_report.sh b/resources/tools/presentation/new/run_report.sh deleted file mode 100755 index d294640fd1..0000000000 --- a/resources/tools/presentation/new/run_report.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/bash - -set -x - -RELEASE=$1 - -# set default values in config array -typeset -A CFG -typeset -A DIR - -DIR[WORKING]=_tmp -CFG[BLD_LATEX]=1 - -# Install system dependencies -sudo apt-get -y update -sudo apt-get -y install libxml2 libxml2-dev libxslt-dev build-essential \ - zlib1g-dev unzip - -if [[ ${CFG[BLD_LATEX]} -eq 1 ]] ; -then - sudo apt-get -y install xvfb texlive-latex-recommended \ - texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra latexmk wkhtmltopdf inkscape - sudo sed -i.bak 's/^\(main_memory\s=\s\).*/\110000000/' /usr/share/texlive/texmf-dist/web2c/texmf.cnf -fi - -# Create working directories -mkdir ${DIR[WORKING]} - -# Create virtual environment -virtualenv ${DIR[WORKING]}/env -. ${DIR[WORKING]}/env/bin/activate - -# Install python dependencies: -pip install -r requirements.txt - -export PYTHONPATH=`pwd` - -python pal.py \ - --specification specification.yaml \ - --release ${RELEASE} \ - --logging INFO \ - --force - -RETURN_STATUS=$(echo $?) -exit ${RETURN_STATUS} |