blob: 5bcea11d500f315d0b82bd4c11f97f870e42312c (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#!/bin/bash
#
# setup : script to setup required runtime environment. This script can be run again to update anything
# this should stay in your project directory
# save console output in setup_<timestamp>.log file in project directory
timestamp=$(date +"%m%d%Y_%H%M%S")
LOG_FILE=setup_$timestamp.log
exec > >(tee -a ${LOG_FILE} )
exec 2> >(tee -a ${LOG_FILE} >&2)
# get the path
path=$(pwd)
pip install \
--no-cache-dir \
--exists-action s \
--target="$path/robot/library" \
--extra-index-url="https://nexus3.onap.org/repository/PyPi.staging/simple" \
'robotframework-seleniumlibrary==3.3.1' \
'robotframework-databaselibrary==1.2' \
'robotframework-angularjs==0.0.9' \
'robotframework-requests==0.5.0' \
'robotframework-sshlibrary==3.3.0' \
'robotframework-ftplibrary==1.6' \
'robotframework-rammbock==0.4.0.1' \
'robotframework-archivelibrary==0.4.0' \
'robotframework-onap==0.4'
if [ -d $path/testsuite/heatbridge ]
then
# Support LF build location
cd $path/testsuite/heatbridge
else
cd ~
git config --global http.sslVerify false
if [ -d ~/heatbridge ]
then
cd heatbridge
git pull origin master
else
git clone https://gerrit.onap.org/r/testsuite/heatbridge.git
cd heatbridge
fi
fi
pip install \
--no-cache-dir \
--upgrade \
--exists-action s \
--target="$path/robot/library" \
./heatbridge
# Go back to execution folder
cd $path
# if the script is running during the image build skip the rest of it
# as required software is installed already.
if $BUILDTIME
then
# we need to update PATH with chromium-chromedriver
echo "Adding in-container chromedriver to PATH"
ln -s /usr/lib/chromium-browser/chromedriver /usr/local/bin/chromedriver
echo "Skipping desktop steps, building container image..."
else
#
# Get the appropriate chromedriver. Default to linux64
#
CHROMEDRIVER_URL=http://chromedriver.storage.googleapis.com/2.43
CHROMEDRIVER_ZIP=chromedriver_linux64.zip
CHROMEDRIVER_TARGET=chromedriver.zip
# Handle mac and windows
OS=`uname -s`
case $OS in
MINGW*_NT*)
CHROMEDRIVER_ZIP=chromedriver_win32.zip
;;
Darwin*)
CHROMEDRIVER_ZIP=chromedriver_mac64.zip
;;
*) echo "Defaulting to Linux 64" ;;
esac
if [ $CHROMEDRIVER_ZIP == 'chromedriver_linux64.zip' ]
then
curl $CHROMEDRIVER_URL/$CHROMEDRIVER_ZIP -o $CHROMEDRIVER_TARGET
unzip chromedriver.zip -d /usr/local/bin
else
curl $CHROMEDRIVER_URL/$CHROMEDRIVER_ZIP -o $CHROMEDRIVER_TARGET
unzip $CHROMEDRIVER_TARGET
fi
rm -rf $CHROMEDRIVER_TARGET
fi
#
# Install kafkacat : https://github.com/edenhill/kafkacat
#
OS=`uname -s`
case $OS in
Darwin)
brew install kafkacat ;;
Linux)
apt-get -y install kafkacat
esac
|