summaryrefslogtreecommitdiffstats
path: root/src/vnet
diff options
context:
space:
mode:
authorFilip Varga <fivarga@cisco.com>2020-02-03 12:14:29 +0100
committerOle Trøan <otroan@employees.org>2020-02-04 13:36:57 +0000
commit9fbacbc56b9f075e9f5fc3f5df1c18043145562c (patch)
treef47e775384e0f8ff4d3cc13c7acb66f8af75389b /src/vnet
parent59b6c0c86d0c3310b8d87b9f2600b6fc7682b549 (diff)
nat: pool allocation function fix
Type: fix Change-Id: I75b20db66fb58e1724a212253c51315836079f4b Signed-off-by: Filip Varga <fivarga@cisco.com>
Diffstat (limited to 'src/vnet')
0 files changed, 0 insertions, 0 deletions
001 Integration testsGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/run_report.sh
blob: d294640fd1b427aa7d2395f5eb897ee8baddc3a3 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
#!/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}