aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/run_report.sh
blob: 165c3fc4f8d4fb05093d2eecbe63a7605e2fe33a (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/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 -p $(which python3) ${DIR[WORKING]}/env
source ${DIR[WORKING]}/env/bin/activate

# Install python dependencies:
pip3 install -r requirements.txt

export PYTHONPATH=`pwd`:`pwd`/../../../:`pwd`/../../libraries/python

python pal.py \
    --specification specification.yaml \
    --release ${RELEASE} \
<<<<<<< HEAD   (b95753 PAL: Fix table data model)
<<<<<<< HEAD   (ede849 Report: Add pdf version)
<<<<<<< HEAD   (35a360 Report: Add data)
=======
<<<<<<< HEAD   (ef4187 Report: Add pdf version)
>>>>>>> CHANGE (68013a Report: Configure report 2001.15)
    --week "13" \
=======
<<<<<<< HEAD   (ede849 Report: Add pdf version)
<<<<<<< HEAD   (d4f9e9 CSIT-1597 API cleanup: acl)
    --week "12" \
=======
=======
<<<<<<< HEAD   (9b9bbb PAL: Fix table data model)
>>>>>>> CHANGE (8f2816 Report: Configure report 2001.16)
    --week "14" \
<<<<<<< HEAD   (b95753 PAL: Fix table data model)
>>>>>>> CHANGE (0ed80e Report: COnfigure reoirt 2001.14)
>>>>>>> CHANGE (bdfc93 Report: COnfigure reoirt 2001.14)
=======
    --week "15" \
>>>>>>> CHANGE (8e601d Report: Configure report 2001.15)
>>>>>>> CHANGE (68013a Report: Configure report 2001.15)
=======
=======
    --week "16" \
>>>>>>> CHANGE (42a491 Report: Configure report 2001.16)
>>>>>>> CHANGE (8f2816 Report: Configure report 2001.16)
    --logging INFO \
    --force

RETURN_STATUS=$(echo $?)
exit ${RETURN_STATUS}