blob: 39fda3b1cdc4aea16f3013b15f30c3b306984f5d [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 III4815f702018-10-03 19:27:42 -070048HEAD_PKGS=(
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070049 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}
William A. Kennington III4815f702018-10-03 19:27:42 -070076for package in "${HEAD_PKGS[@]}"; do
William A. Kennington III32deed82018-09-17 20:48:23 -070077 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 III4815f702018-10-03 19:27:42 -070081# A list of package versions we are building
82declare -A PKG_REV=()
83
84# Turn the depcache into a dictionary so we can reference the HEAD of each repo
85for line in $(cat "$DEPCACHE_FILE"); do
86 linearr=($(echo "$line" | tr ':' ' '))
87 PKG_REV["${linearr[0]}"]="${linearr[1]}"
88done
89
William A. Kennington III3cf94fd2018-10-03 19:16:55 -070090# Define common flags used for builds
91PREFIX="/usr/local"
92CONFIGURE_FLAGS=(
93 "--prefix=${PREFIX}"
94)
William A. Kennington III4a67c402018-10-03 15:53:56 -070095CMAKE_FLAGS=(
96 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
97 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -070098 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -070099)
100
Matthew Barthb4aea672016-11-10 14:59:52 -0600101################################# docker img # #################################
102# Create docker image that can run package unit tests
103if [[ "${DISTRO}" == "ubuntu"* ]]; then
104Dockerfile=$(cat << EOF
105FROM ${DOCKER_BASE}${DISTRO}
106
107ENV DEBIAN_FRONTEND noninteractive
108
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700109# We need the keys to be imported for dbgsym repos
110# New releases have a package, older ones fall back to manual fetching
111# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
112RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
113 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
114
115# Parse the current repo list into a debug repo list
116RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
117
118# Remove non-existent debug repos
119RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
120
121RUN cat /etc/apt/sources.list.d/debug.list
122
Matthew Barthb4aea672016-11-10 14:59:52 -0600123RUN apt-get update && apt-get install -yy \
124 gcc \
125 g++ \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700126 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600127 libc6-dev \
128 libtool \
129 cmake \
130 python \
131 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -0600132 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -0600133 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -0600134 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930135 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -0600136 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -0700137 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -0500138 python3 \
139 python3-dev\
140 python3-yaml \
141 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930142 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500143 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -0600144 pkg-config \
145 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700146 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600147 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700148 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600149 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500150 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700151 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500152 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700153 libpng-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -0600154 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700155 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600156 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500157 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800158 iputils-ping \
Patrick Venture52164fd2018-08-28 16:12:47 -0700159 clang-format-6.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530160 iproute2 \
161 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700162 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530163 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700164 libsnmp-dev \
165 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700166 valgrind-dbg \
Richard Marian Thomaiyar24660002018-06-26 21:50:57 +0530167 lcov \
James Feist878df5c2018-07-26 14:54:28 -0700168 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530169 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700170 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500171 wget \
172 libldap2-dev
Matthew Barthb4aea672016-11-10 14:59:52 -0600173
Matthew Bartha2366d92017-01-31 09:46:20 -0600174RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600175RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600176
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700177# Snapshot from 2018-06-14
William A. Kennington III5b550082018-10-03 19:25:49 -0700178RUN curl -L https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz | tar -xz && \
179cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700180mkdir build && \
181cd build && \
182cmake ${CMAKE_FLAGS[@]} -DBUILD_GTEST=ON -DBUILD_GMOCK=ON .. && \
Patrick Ventureed136352018-04-19 10:50:03 -0700183make && make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600184
William A. Kennington III5b550082018-10-03 19:25:49 -0700185RUN curl -L https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz | tar -xz && \
186cp -a cereal-1.2.2/include/cereal/ /usr/local/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500187
William A. Kennington III513fe912018-10-03 19:25:01 -0700188RUN mkdir /usr/local/include/nlohmann/ && \
189curl -L -o /usr/local/include/nlohmann/json.hpp https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
David Cobbleye99c07a2017-12-22 11:39:01 -0800190
William A. Kennington III5b550082018-10-03 19:25:49 -0700191RUN curl -L https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2 | tar -xj && \
192cp -a -r boost_1_66_0/boost /usr/local/include
James Feist878df5c2018-07-26 14:54:28 -0700193
William A. Kennington III581c4d42018-10-03 15:48:20 -0700194# version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
William A. Kennington III5b550082018-10-03 19:25:49 -0700195RUN curl -L https://github.com/leethomason/tinyxml2/archive/37bc3aca429f0164adf68c23444540b4a24b5778.tar.gz | tar -xz && \
196cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700197mkdir build && \
198cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700199cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700200make -j$(nproc) && \
201make install
202
203# Fetch, build, and install latest libvncserver because obmc-ikvm requires a recent commit
204# (libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a). This won't be included in any
205# respository packages for some time.
William A. Kennington III4815f702018-10-03 19:27:42 -0700206RUN curl -L https://github.com/LibVNC/libvncserver/archive/dd873fce451e4b7d7cc69056a62e107aae7c8e7a.tar.gz | tar -xz && \
207cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700208mkdir build && \
209cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700210cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700211make -j$(nproc) && \
212make install
213
Matthew Barthb4aea672016-11-10 14:59:52 -0600214RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington III84f207d2018-06-19 19:35:21 -0700215RUN mkdir -p $(dirname ${HOME})
Matthew Barthb4aea672016-11-10 14:59:52 -0600216RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
217
Matthew Barthccb7f852016-11-23 17:43:02 -0600218RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
219
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030220# Sneaky use of Dockerfile semantics! Force a rebuild of the image if master
William A. Kennington III32deed82018-09-17 20:48:23 -0700221# has been updated in any of the repositories in \$PKGS: This happens as a
222# consequence of the ls-remotes above, which will change the contents of
223# \${DEPCACHE_FILE} and therefore trigger rebuilds of all of the following layers.
224# NOTE: The file is sorted to ensure the ordering is stable.
225RUN echo '$(sort "$DEPCACHE_FILE" | tr '\n' ',')' > /root/.depcache
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030226
William A. Kennington III4815f702018-10-03 19:27:42 -0700227RUN curl -L https://github.com/openbmc/sdbusplus/archive/${PKG_REV['sdbusplus']}.tar.gz | tar -xz && \
228cd sdbusplus-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030229./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700230./configure ${CONFIGURE_FLAGS[@]} --enable-transaction && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030231make -j$(nproc) && \
232make install
233
William A. Kennington III4815f702018-10-03 19:27:42 -0700234RUN curl -L https://github.com/openbmc/sdeventplus/archive/${PKG_REV['sdeventplus']}.tar.gz | tar -xz && \
235cd sdeventplus-* && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700236./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700237./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700238make -j$(nproc) && \
239make install
240
William A. Kennington III4815f702018-10-03 19:27:42 -0700241RUN curl -L https://github.com/openbmc/gpioplus/archive/${PKG_REV['gpioplus']}.tar.gz | tar -xz && \
242cd gpioplus-* && \
Patrick Venture22329962018-09-14 10:23:04 -0700243./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700244./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
Patrick Venture22329962018-09-14 10:23:04 -0700245make -j$(nproc) && \
246make install
247
William A. Kennington III4815f702018-10-03 19:27:42 -0700248RUN curl -L https://github.com/openbmc/phosphor-dbus-interfaces/archive/${PKG_REV['phosphor-dbus-interfaces']}.tar.gz | tar -xz && \
249cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030250./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700251./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030252make -j$(nproc) && \
253make install
254
William A. Kennington III4815f702018-10-03 19:27:42 -0700255RUN curl -L https://github.com/openbmc/openpower-dbus-interfaces/archive/${PKG_REV['openpower-dbus-interfaces']}.tar.gz | tar -xz && \
256cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030257./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700258./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030259make -j$(nproc) && \
260make install
261
William A. Kennington III4815f702018-10-03 19:27:42 -0700262RUN curl -L https://github.com/openbmc/phosphor-logging/archive/${PKG_REV['phosphor-logging']}.tar.gz | tar -xz && \
263cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030264./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700265./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030266make -j$(nproc) && \
267make install
268
William A. Kennington III4815f702018-10-03 19:27:42 -0700269RUN curl -L https://github.com/openbmc/phosphor-objmgr/archive/${PKG_REV['phosphor-objmgr']}.tar.gz | tar -xz && \
270cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030271./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700272./configure ${CONFIGURE_FLAGS[@]} --enable-unpatched-systemd && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030273make -j$(nproc) && \
274make install
275
Matthew Barthb4aea672016-11-10 14:59:52 -0600276RUN /bin/bash
277EOF
278)
279fi
280################################# docker img # #################################
281
282# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700283docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"