blob: 16ce201d454b7be681e9a4aec3616cdffc01561a [file] [log] [blame]
Matthew Barthb4aea672016-11-10 14:59:52 -06001#!/bin/bash -xe
2#
3# Build the required docker image to run package unit tests
4#
5# Parameters:
6# param1: <optional, the name of the docker image to generate>
7# default is openbmc/ubuntu-unit-test
8# param2: <optional, the distro to build a docker image against>
Andrew Geissler8557b962018-06-25 16:10:32 -05009# default is ubuntu:artful
Matthew Barthb4aea672016-11-10 14:59:52 -060010
11set -uo pipefail
12
13DOCKER_IMG_NAME=${1:-"openbmc/ubuntu-unit-test"}
Patrick Venture52164fd2018-08-28 16:12:47 -070014DISTRO=${2:-"ubuntu:bionic"}
Matthew Barthb4aea672016-11-10 14:59:52 -060015
Matthew Barthccb7f852016-11-23 17:43:02 -060016# Disable autom4te cache as workaround to permission issue
17AUTOM4TE_CFG="/root/.autom4te.cfg"
18AUTOM4TE="begin-language: \"Autoconf-without-aclocal-m4\"\nargs: --no-cache\n\
19end-language: \"Autoconf-without-aclocal-m4\""
20
Matthew Barthb4aea672016-11-10 14:59:52 -060021# Determine the architecture
22ARCH=$(uname -m)
23case ${ARCH} in
24 "ppc64le")
25 DOCKER_BASE="ppc64le/"
26 ;;
27 "x86_64")
28 DOCKER_BASE=""
29 ;;
30 *)
31 echo "Unsupported system architecture(${ARCH}) found for docker image"
32 exit 1
33esac
34
William A. Kennington III32deed82018-09-17 20:48:23 -070035# Setup temporary files
36DEPCACHE_FILE=""
37cleanup() {
38 local status="$?"
39 if [ -n "$DEPCACHE_FILE" ]; then
40 rm -f "$DEPCACHE_FILE"
41 fi
42 trap - EXIT ERR
43 exit "$status"
44}
45trap cleanup EXIT ERR INT TERM QUIT
46DEPCACHE_FILE="$(mktemp)"
47
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070048PKGS=(
49 phosphor-objmgr
50 sdbusplus
51 sdeventplus
Patrick Venture22329962018-09-14 10:23:04 -070052 gpioplus
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070053 phosphor-logging
54 phosphor-dbus-interfaces
55 openpower-dbus-interfaces
56)
William A. Kennington III32deed82018-09-17 20:48:23 -070057
58# Generate a list of depcache entries
59# We want to do this in parallel since the package list is growing
60# and the network lookup is low overhead but decently high latency.
61# This doesn't worry about producing a stable DEPCACHE_FILE, that is
62# done by readers who need a stable ordering.
63generate_depcache_entry() {
64 local package="$1"
65
66 local tip
67 tip=$(git ls-remote "https://github.com/openbmc/${package}" |
68 grep 'refs/heads/master' | awk '{ print $1 }')
69
70 # Lock the file to avoid interlaced writes
71 exec 3>> "$DEPCACHE_FILE"
72 flock -x 3
73 echo "$package:$tip" >&3
74 exec 3>&-
75}
76for package in "${PKGS[@]}"; do
77 generate_depcache_entry "$package" &
Andrew Jeffery221eeda2018-03-08 13:32:43 +103078done
William A. Kennington III32deed82018-09-17 20:48:23 -070079wait
Andrew Jeffery221eeda2018-03-08 13:32:43 +103080
William A. Kennington III4a67c402018-10-03 15:53:56 -070081# Define common flags used for cmake builds
82CMAKE_FLAGS=(
83 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
84 "-DBUILD_SHARED_LIBS=ON"
85 "-DCMAKE_INSTALL_PREFIX:PATH=/usr/local"
86)
87
Matthew Barthb4aea672016-11-10 14:59:52 -060088################################# docker img # #################################
89# Create docker image that can run package unit tests
90if [[ "${DISTRO}" == "ubuntu"* ]]; then
91Dockerfile=$(cat << EOF
92FROM ${DOCKER_BASE}${DISTRO}
93
94ENV DEBIAN_FRONTEND noninteractive
95
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070096# We need the keys to be imported for dbgsym repos
97# New releases have a package, older ones fall back to manual fetching
98# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
99RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
100 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
101
102# Parse the current repo list into a debug repo list
103RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
104
105# Remove non-existent debug repos
106RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
107
108RUN cat /etc/apt/sources.list.d/debug.list
109
Matthew Barthb4aea672016-11-10 14:59:52 -0600110RUN apt-get update && apt-get install -yy \
111 gcc \
112 g++ \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700113 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600114 libc6-dev \
115 libtool \
116 cmake \
117 python \
118 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -0600119 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -0600120 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -0600121 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930122 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -0600123 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -0700124 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -0500125 python3 \
126 python3-dev\
127 python3-yaml \
128 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930129 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500130 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -0600131 pkg-config \
132 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700133 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600134 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700135 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600136 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500137 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700138 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500139 libjpeg-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -0600140 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700141 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600142 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500143 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800144 iputils-ping \
Patrick Venture52164fd2018-08-28 16:12:47 -0700145 clang-format-6.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530146 iproute2 \
147 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700148 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530149 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700150 libsnmp-dev \
151 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700152 valgrind-dbg \
Richard Marian Thomaiyar24660002018-06-26 21:50:57 +0530153 lcov \
James Feist878df5c2018-07-26 14:54:28 -0700154 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530155 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700156 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500157 wget \
158 libldap2-dev
Matthew Barthb4aea672016-11-10 14:59:52 -0600159
Matthew Bartha2366d92017-01-31 09:46:20 -0600160RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600161RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600162
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700163# Snapshot from 2018-06-14
William A. Kennington III22658b02018-06-29 15:55:17 -0700164RUN curl -L -o googletest.tar.gz https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700165RUN tar -xzf googletest.tar.gz
166RUN cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700167mkdir build && \
168cd build && \
169cmake ${CMAKE_FLAGS[@]} -DBUILD_GTEST=ON -DBUILD_GMOCK=ON .. && \
Patrick Ventureed136352018-04-19 10:50:03 -0700170make && make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600171
William A. Kennington III22658b02018-06-29 15:55:17 -0700172RUN curl -L -O https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500173RUN tar -xzf v1.2.2.tar.gz
William A. Kennington IIIfeeceb62018-10-07 15:44:50 -0700174RUN cp -a cereal-1.2.2/include/cereal/ /usr/local/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500175
William A. Kennington III22658b02018-06-29 15:55:17 -0700176RUN curl -L -O https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
William A. Kennington IIIfeeceb62018-10-07 15:44:50 -0700177RUN mkdir /usr/local/include/nlohmann/
178RUN cp -a json.hpp /usr/local/include/nlohmann/
David Cobbleye99c07a2017-12-22 11:39:01 -0800179
James Feist878df5c2018-07-26 14:54:28 -0700180RUN curl -L -O https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2
181RUN tar --bzip2 -xf boost_1_66_0.tar.bz2
William A. Kennington IIIfeeceb62018-10-07 15:44:50 -0700182RUN cp -a -r boost_1_66_0/boost /usr/local/include
James Feist878df5c2018-07-26 14:54:28 -0700183
William A. Kennington III581c4d42018-10-03 15:48:20 -0700184# version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
185RUN curl -L -o tinyxml2.tar.gz https://github.com/leethomason/tinyxml2/archive/37bc3aca429f0164adf68c23444540b4a24b5778.tar.gz && \
186tar -xzf tinyxml2.tar.gz && \
187cd tinyxml2-3* && \
188mkdir build && \
189cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700190cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700191make -j$(nproc) && \
192make install
193
194# Fetch, build, and install latest libvncserver because obmc-ikvm requires a recent commit
195# (libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a). This won't be included in any
196# respository packages for some time.
197RUN git clone https://github.com/LibVNC/libvncserver && \
198cd libvncserver && \
199mkdir build && \
200cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700201cmake ${CMAKE_FLAGS[@]} -DWITH_PNG=OFF .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700202make -j$(nproc) && \
203make install
204
Matthew Barthb4aea672016-11-10 14:59:52 -0600205RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington III84f207d2018-06-19 19:35:21 -0700206RUN mkdir -p $(dirname ${HOME})
Matthew Barthb4aea672016-11-10 14:59:52 -0600207RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
208
Matthew Barthccb7f852016-11-23 17:43:02 -0600209RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
210
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030211# Sneaky use of Dockerfile semantics! Force a rebuild of the image if master
William A. Kennington III32deed82018-09-17 20:48:23 -0700212# has been updated in any of the repositories in \$PKGS: This happens as a
213# consequence of the ls-remotes above, which will change the contents of
214# \${DEPCACHE_FILE} and therefore trigger rebuilds of all of the following layers.
215# NOTE: The file is sorted to ensure the ordering is stable.
216RUN echo '$(sort "$DEPCACHE_FILE" | tr '\n' ',')' > /root/.depcache
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030217
218RUN git clone https://github.com/openbmc/sdbusplus && \
219cd sdbusplus && \
220./bootstrap.sh && \
221./configure --enable-transaction && \
222make -j$(nproc) && \
223make install
224
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700225RUN git clone https://github.com/openbmc/sdeventplus && \
226cd sdeventplus && \
227./bootstrap.sh && \
228./configure --disable-tests --disable-examples && \
229make -j$(nproc) && \
230make install
231
Patrick Venture22329962018-09-14 10:23:04 -0700232RUN git clone https://github.com/openbmc/gpioplus && \
233cd gpioplus && \
234./bootstrap.sh && \
235./configure --disable-tests --disable-examples && \
236make -j$(nproc) && \
237make install
238
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030239RUN git clone https://github.com/openbmc/phosphor-dbus-interfaces && \
240cd phosphor-dbus-interfaces && \
241./bootstrap.sh && \
242./configure && \
243make -j$(nproc) && \
244make install
245
246RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \
247cd openpower-dbus-interfaces && \
248./bootstrap.sh && \
249./configure && \
250make -j$(nproc) && \
251make install
252
253RUN git clone https://github.com/openbmc/phosphor-logging && \
254cd phosphor-logging && \
255./bootstrap.sh && \
256./configure --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \
257make -j$(nproc) && \
258make install
259
260RUN git clone https://github.com/openbmc/phosphor-objmgr && \
261cd phosphor-objmgr && \
262./bootstrap.sh && \
263./configure --enable-unpatched-systemd && \
264make -j$(nproc) && \
265make install
266
Matthew Barthb4aea672016-11-10 14:59:52 -0600267RUN /bin/bash
268EOF
269)
270fi
271################################# docker img # #################################
272
273# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700274docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"