blob: 0b25a522afc754371ae1438bc1dc97f8589597b3 [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 .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700183make -j$(nproc) && \
184make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600185
William A. Kennington III5b550082018-10-03 19:25:49 -0700186RUN curl -L https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz | tar -xz && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700187cp -a cereal-1.2.2/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500188
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700189RUN mkdir ${PREFIX}/include/nlohmann/ && \
190curl -L -o ${PREFIX}/include/nlohmann/json.hpp https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
David Cobbleye99c07a2017-12-22 11:39:01 -0800191
William A. Kennington III5b550082018-10-03 19:25:49 -0700192RUN curl -L https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2 | tar -xj && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700193cp -a -r boost_1_66_0/boost ${PREFIX}/include
James Feist878df5c2018-07-26 14:54:28 -0700194
William A. Kennington III581c4d42018-10-03 15:48:20 -0700195# version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
William A. Kennington III5b550082018-10-03 19:25:49 -0700196RUN curl -L https://github.com/leethomason/tinyxml2/archive/37bc3aca429f0164adf68c23444540b4a24b5778.tar.gz | tar -xz && \
197cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700198mkdir build && \
199cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700200cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700201make -j$(nproc) && \
202make install
203
204# Fetch, build, and install latest libvncserver because obmc-ikvm requires a recent commit
205# (libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a). This won't be included in any
206# respository packages for some time.
William A. Kennington III4815f702018-10-03 19:27:42 -0700207RUN curl -L https://github.com/LibVNC/libvncserver/archive/dd873fce451e4b7d7cc69056a62e107aae7c8e7a.tar.gz | tar -xz && \
208cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700209mkdir build && \
210cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700211cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700212make -j$(nproc) && \
213make install
214
Matthew Barthb4aea672016-11-10 14:59:52 -0600215RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington III84f207d2018-06-19 19:35:21 -0700216RUN mkdir -p $(dirname ${HOME})
Matthew Barthb4aea672016-11-10 14:59:52 -0600217RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
218
Matthew Barthccb7f852016-11-23 17:43:02 -0600219RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
220
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030221# Sneaky use of Dockerfile semantics! Force a rebuild of the image if master
William A. Kennington III32deed82018-09-17 20:48:23 -0700222# has been updated in any of the repositories in \$PKGS: This happens as a
223# consequence of the ls-remotes above, which will change the contents of
224# \${DEPCACHE_FILE} and therefore trigger rebuilds of all of the following layers.
225# NOTE: The file is sorted to ensure the ordering is stable.
226RUN echo '$(sort "$DEPCACHE_FILE" | tr '\n' ',')' > /root/.depcache
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030227
William A. Kennington III4815f702018-10-03 19:27:42 -0700228RUN curl -L https://github.com/openbmc/sdbusplus/archive/${PKG_REV['sdbusplus']}.tar.gz | tar -xz && \
229cd sdbusplus-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030230./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700231./configure ${CONFIGURE_FLAGS[@]} --enable-transaction && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030232make -j$(nproc) && \
233make install
234
William A. Kennington III4815f702018-10-03 19:27:42 -0700235RUN curl -L https://github.com/openbmc/sdeventplus/archive/${PKG_REV['sdeventplus']}.tar.gz | tar -xz && \
236cd sdeventplus-* && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700237./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700238./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700239make -j$(nproc) && \
240make install
241
William A. Kennington III4815f702018-10-03 19:27:42 -0700242RUN curl -L https://github.com/openbmc/gpioplus/archive/${PKG_REV['gpioplus']}.tar.gz | tar -xz && \
243cd gpioplus-* && \
Patrick Venture22329962018-09-14 10:23:04 -0700244./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700245./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
Patrick Venture22329962018-09-14 10:23:04 -0700246make -j$(nproc) && \
247make install
248
William A. Kennington III4815f702018-10-03 19:27:42 -0700249RUN curl -L https://github.com/openbmc/phosphor-dbus-interfaces/archive/${PKG_REV['phosphor-dbus-interfaces']}.tar.gz | tar -xz && \
250cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030251./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700252./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030253make -j$(nproc) && \
254make install
255
William A. Kennington III4815f702018-10-03 19:27:42 -0700256RUN curl -L https://github.com/openbmc/openpower-dbus-interfaces/archive/${PKG_REV['openpower-dbus-interfaces']}.tar.gz | tar -xz && \
257cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030258./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700259./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030260make -j$(nproc) && \
261make install
262
William A. Kennington III4815f702018-10-03 19:27:42 -0700263RUN curl -L https://github.com/openbmc/phosphor-logging/archive/${PKG_REV['phosphor-logging']}.tar.gz | tar -xz && \
264cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030265./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700266./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030267make -j$(nproc) && \
268make install
269
William A. Kennington III4815f702018-10-03 19:27:42 -0700270RUN curl -L https://github.com/openbmc/phosphor-objmgr/archive/${PKG_REV['phosphor-objmgr']}.tar.gz | tar -xz && \
271cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030272./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700273./configure ${CONFIGURE_FLAGS[@]} --enable-unpatched-systemd && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030274make -j$(nproc) && \
275make install
276
Matthew Barthb4aea672016-11-10 14:59:52 -0600277RUN /bin/bash
278EOF
279)
280fi
281################################# docker img # #################################
282
283# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700284docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"