Merge "Revert "Add openSUSE to VPP jobs""
[ci-management.git] / packer / provision / basebuild.sh
1 #!/bin/bash
2
3 # vim: ts=4 sw=4 sts=4 et tw=72 :
4
5 rh_systems() {
6
7     # RH Install build tools
8     echo "---> Installing RH build tools $(date +'%Y%m%dT%H%M%S')"
9     RH_TOOLS_PKGS="@development redhat-lsb glibc-static \
10       java-1.8.0-openjdk-devel yum-utils openssl-devel apr-devel indent rpm"
11     yum install -y ${RH_TOOLS_PKGS}
12
13     # Memory leakage checks
14     yum install -y valgrind
15
16     # RH Install Python dependencies
17     ###REMOVED mysql-devel
18     echo "---> Installing RH Python dependencies $(date +'%Y%m%dT%H%M%S')"
19     RH_PYTHON_PKGS="python-devel python-virtualenv python-setuptools \
20       python-pip kernel-devel epel-rpm-macros"
21     pip install --upgrade pip
22     yum install -y ${RH_PYTHON_PKGS}
23     pip install pypcap
24
25     # RH Install Documentation packages
26     ###Removed python-pyparsing
27     echo "---> Installing RH documentation packages $(date +'%Y%m%dT%H%M%S')"
28     RH_DOC_PKGS="doxygen graphviz python-jinja2 asciidoc \
29       dblatex source-highlight python-sphinx libxml2 libffi-devel python-cffi"
30     yum install -y install ${RH_DOC_PKGS}
31
32     # RH Install GCC packages
33     echo "---> Installing RH GCC packages $(date +'%Y%m%dT%H%M%S')"
34     RH_GCC_PKGS="cpp gcc c++ cmake make"
35     yum install -y ${RH_GCC_PKGS}
36
37     # RH Install components to build Ganglia modules
38     echo "---> Installing RH components $(date +'%Y%m%dT%H%M%S')"
39     RH_GANGLIA_MODS="libconfuse-devel ganglia-devel mock"
40     yum install -y --enablerepo=epel ${RH_GANGLIA_MODS}
41
42     # RH Install module for VPP project
43     echo uio_pci_generic >> /etc/modules
44
45     # RH Install VPP packages to shorten build times
46     echo "---> Installing VPP dependencies $(date +'%Y%m%dT%H%M%S')"
47     RH_VPP_PKGS="curl autoconf automake bison ccache dkms git libtool \
48       libconfuse-dev git-review cscope"
49     yum install -y ${RH_VPP_PKGS}
50
51     yum groupinstall "Development Tools"
52     # RH Install TLDK dependencies
53     RH_TLKD_PKGS="libpcap-devel libcap-devel scapy"
54     yum install -y ${RH_TLKD_PKGS}
55
56     # RH Install Puppet packages
57     PUPPET_PKGS="libxml2-devel libxslt-devel ruby-devel zlib-devel"
58     yum install -y ${PUPPET_PKGS}
59
60     # RH Install debuginfo packages
61     #echo "---> Installing debug packages $(date +'%Y%m%dT%H%M%S')"
62     #RH_DEBUG_PKGS="glibc openssl-libs zlib"
63     #debuginfo-install -y ${RH_DEBUG_PKGS}
64
65     # # RH Packer builds happen from the centos flavor images
66     # PACKERDIR=$(mktemp -d)
67     # # disable double quote checking
68     # # shellcheck disable=SC2086
69     # cd $PACKERDIR
70     # wget https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_linux_amd64.zip
71     # unzip packer_0.10.1_linux_amd64.zip -d /usr/local/bin/
72     # # rename packer to avoid conflicts with cracklib
73     # mv /usr/local/bin/packer /usr/local/bin/packer.io
74
75     # # cleanup from the installation
76     # # disable double quote checking
77     # # shellcheck disable=SC2086
78     # rm -rf $PACKERDIR
79     # # cleanup from previous install process
80     # if [ -d /tmp/packer ]
81     # then
82     #     rm -rf /tmp/packer
83     # fi
84 }
85
86 ubuntu_systems() {
87
88     # DEB add Toolchain repo
89     sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
90
91     #Configuring thirdparty Nexus repo
92     echo "deb [trusted=yes] https://nexus.fd.io/content/repositories/thirdparty ./" > /etc/apt/sources.list.d/FD.io.thirdparty.list
93
94     # DEB Install PPA packages
95     echo "---> Adding '$1' PPA $(date +'%Y%m%dT%H%M%S')"
96     dpkg -l software-properties-common > /dev/null 2>&1 || software-properties-common
97
98     listfile=$(perl -e "print(q{$1} =~ m{^ppa:(.+)/ppa})")-ppa-${CODENAME}.list
99       if [ ! -f /etc/apt/sources.list.d/${listfile} ]
100       then
101         do_retry sudo apt-add-repository -y $1
102       fi
103
104     apt-get update
105
106     # DEB cloud packages
107     echo "---> Installing cloud packages $(date +'%Y%m%dT%H%M%S')"
108     CLOUD_PKGS="cloud-initramfs-dyn-netconf cloud-initramfs-growroot \
109       cloud-initramfs-rescuevol"
110     apt install -y ${CLOUD_PKGS}
111
112     # DEB Install Python dependencies
113     echo "---> Installing Python dependencies $(date +'%Y%m%dT%H%M%S')"
114     PYTHON_PKGS="python-all python-dev python-virtualenv python-setuptools \
115       python-pip libssl-dev libmysqlclient-dev python2.7 libffi-dev \
116       python-cffi"
117     apt install -y ${PYTHON_PKGS}
118
119     # Memory leakage checks
120     apt install -y valgrind
121
122     # DEB Install Documentation packages
123     echo "---> Installing documentation packages $(date +'%Y%m%dT%H%M%S')"
124     DOC_PKGS="doxygen graphviz python-pyparsing python-jinja2 asciidoc \
125       dblatex source-highlight"
126     apt install -y ${DOC_PKGS}
127
128     # DEB Install the correct version of toolchain packages
129     echo "---> Installing latest toolchain packages from PPA $(date +'%Y%m%dT%H%M%S')"
130
131     #Retry to prevent timeout failure
132     #echo "---> Updating package index $(date +'%Y%m%dT%H%M%S')"
133     #do_retry sudo apt-get update
134     #echo "<--- Updating package index $(date +'%Y%m%dT%H%M%S')"
135     #echo "<--- Adding '$1' PPA $(date +'%Y%m%dT%H%M%S')"
136
137     # DEB Install GCC packages
138     echo "---> Installing GCC-5 packages $(date +'%Y%m%dT%H%M%S')"
139     GCC_PKGS="cpp gcc g++ cmake lcov gcc-multilib"
140     apt install -y ${GCC_PKGS}
141
142     # DEB Install VPP packages to shorten build times
143     echo "---> Installing VPP DEB_DEPENDS packages $(date +'%Y%m%dT%H%M%S')"
144     VPP_PKGS="curl build-essential autoconf automake bison libssl-dev ccache \
145       debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd \
146       libconfuse-dev git-review exuberant-ctags cscope indent pkg-config emacs"
147     apt install -y ${VPP_PKGS}
148
149     # DEB Install CSIT packages
150     CSIT_PKGS="libxml2 libxml2-dev libxslt-dev zlib1g-dev bc unzip"
151     apt install -y ${CSIT_PKGS}
152
153     # DEB Install latest kernel and uio
154     echo "---> Installing kernel image and header packages $(date +'%Y%m%dT%H%M%S')"
155     DEB_PKGS="linux-image-extra-virtual linux-headers-virtual linux-headers-`uname -r`"
156     apt install -y ${DEB_PKGS}
157
158     # DEB Install deb_dpdk packages to shorten build times
159     ###REMOVED sphinx-rtd-theme
160     echo "---> Installing deb_dpdk packages $(date +'%Y%m%dT%H%M%S')"
161     DEB_DPDK_PKGS="google-mock lsb-release dpkg-dev debian-xcontrol devscripts \
162       pristine-tar dh-python python-sphinx libpcap0.8-dev libstdc++5 \
163       python-scapy inkscape libxen-dev libxenstore3.0 python-sphinx-rtd-theme"
164     apt install -y ${DEB_DPDK_PKGS}
165
166     sudo apt install -y libcap-dev libpcap-dev
167
168     TEXLIVE_PKGS="texlive-fonts-recommended tex-common texlive-base \
169       texlive-binaries texlive-pictures texlive-latex-recommended \
170       preview-latex-style texlive-latex-extra"
171     apt install -y ${TEXLIVE_PKGS}
172     echo "<--- Installing deb_dpdk packages $(date +'%Y%m%dT%H%M%S')"
173
174     # DEB Manipulation tools, edits debugger, and LSB
175     echo "---> Installing tools packages $(date +'%Y%m%dT%H%M%S')"
176     TOOL_PKGS="iproute2 ethtool vlan bridge-utils vim gdb lsb-release gdbserver"
177     apt install -y ${TOOL_PKGS}
178
179     # DEB Updating CA certificates
180     echo "---> Forcing CA certificate update $(date +'%Y%m%dT%H%M%S')"
181       sudo update-ca-certificates -f > /dev/null 2>&1
182     echo "<--- Forcing CA certificate update $(date +'%Y%m%dT%H%M%S')"
183 }
184
185 opensuse_systems() {
186
187     # openSuSE Install build tools
188     echo "---> Installing openSuSE build tools $(date +'%Y%m%dT%H%M%S')"
189     OPENSUSE_TOOLS_PKGS="glibc-devel-static java-1_8_0-openjdk-devel yum-utils \
190     openssl indent pkg-config emacs"
191     zypper install -y "${OPENSUSE_TOOLS_PKGS}"
192
193     # Memory leakage checks
194     zypper install -y valgrind
195
196     # openSuSE Install Python dependencies
197     echo "---> Installing openSuSE Python dependencies $(date +'%Y%m%dT%H%M%S')"
198     OPENSUSE_PYTHON_PKGS="python-devel python-virtualenv python-setuptools \
199     python-pip python-wheel libmysqlclient-dev kernel-devel"
200     zypper install -y "${OPENSUSE_PYTHON_PKGS}"
201
202     # openSuSE Install Documentation packages
203     echo "---> Installing openSuSE documentation packages $(date +'%Y%m%dT%H%M%S')"
204     OPENSUSE_DOC_PKGS="doxygen graphviz python-jinja2 asciidoc dblatex \
205     source-highlight python-sphinx libxml2 libffi-devel python-cffi \
206     python-pyparsing libstdc++6 python-sphinx_rtd_theme"
207     zypper install -y "${OPENSUSE_DOC_PKGS}"
208
209     # openSuSE Install GCC packages
210     echo "---> Installing openSuSE GCC packages $(date +'%Y%m%dT%H%M%S')"
211     OPENSUSE_GCC_PKGS="cpp gcc gcc-c++ cmake make lcov"
212     zypper install -y "${OPENSUSE_GCC_PKGS}"
213
214     # openSuSE Install components to build Ganglia modules
215     # ganglia-devel not available for 42.3
216     echo "---> Installing openSuSE components $(date +'%Y%m%dT%H%M%S')"
217     OPENSUSE_GANGLIA_MODS="libconfuse-devel python-mock rrdtool rrdtool-devel \
218     libapr1 libapr1-devel libexpat-devel pcre-devel"
219     zypper install -y "${OPENSUSE_GANGLIA_MODS}"
220
221     # openSuSE Install VPP packages to shorten build times
222     echo "---> Installing VPP dependencies $(date +'%Y%m%dT%H%M%S')"
223     OPENSUSE_VPP_PKGS="curl autoconf automake bison ccache git libtool \
224     git-review ctags cscope libxml2-tools unzip lsb-release devscripts"
225     zypper install -y "${OPENSUSE_VPP_PKGS}"
226
227     # openSuSE Install TLDK dependencies
228     OPENSUSE_TLKD_PKGS="libpcap-devel libcap-devel"
229     yum install -y "${OPENSUSE_TLKD_PKGS}"
230     zypper -n install -t pattern devel_basis
231
232     # openSuSE Manipulation tools, edits debugger, and LSB
233     echo "---> Installing tools packages $(date +'%Y%m%dT%H%M%S')"
234     TOOL_PKGS="iproute2 ethtool vlan bridge-utils vim gdb  gdbserver"
235     zypper install -y "${TOOL_PKGS}"
236
237
238     # openSuSE Install Puppet packages
239     PUPPET_PKGS="libxml2-devel libxslt-devel ruby-devel zlib-devel"
240     zypper install -y "${PUPPET_PKGS}"
241
242 }
243
244 all_systems() {
245
246     echo 'Configure keep alive to prevent timeout during testing'
247     local SSH_CFG=/etc/ssh/ssh_config
248     echo "TCPKeepAlive        true" | sudo tee -a ${SSH_CFG} >/dev/null 2>&1
249     echo "ServerAliveCountMax 30"   | sudo tee -a ${SSH_CFG} >/dev/null 2>&1
250     echo "ServerAliveInterval 10"   | sudo tee -a ${SSH_CFG} >/dev/null 2>&1
251
252     # Following installs hashicorp's packer binary which is required  for
253     # ci-management-{verify,merge}-packer jobs
254     mkdir /tmp/packer.io
255     cd /tmp/packer.io
256     wget https://releases.hashicorp.com/packer/0.12.2/packer_0.12.2_linux_amd64.zip
257     unzip packer_0.12.2_linux_amd64.zip -d /usr/local/bin/
258     # note: rename to packer.io to avoid conflict with cracklib packer
259     mv /usr/local/bin/packer /usr/local/bin/packer.io
260
261     # Install packagecloud.io
262     gem install package_cloud
263 }
264
265 echo "---> Detecting OS"
266 ORIGIN=$(facter operatingsystem | tr '[:upper:]' '[:lower:]')
267
268 case "${ORIGIN}" in
269     fedora|centos|redhat)
270         echo "---> RH type system detected"
271         rh_systems
272     ;;
273     ubuntu)
274         echo "---> Ubuntu system detected"
275         ubuntu_systems
276     ;;
277     opensuse)
278         echo "---> openSuSE system detected"
279         opensuse_systems
280     ;;
281     *)
282         echo "---> Unknown operating system"
283     ;;
284 esac
285
286 # execute steps for all systems
287 all_systems