blob: 2c71e71b4abe17bbeafc69ceb09cd6d73218fa03 [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 III3cf94fd2018-10-03 19:16:55 -070081# Define common flags used for builds
82PREFIX="/usr/local"
83CONFIGURE_FLAGS=(
84 "--prefix=${PREFIX}"
85)
William A. Kennington III4a67c402018-10-03 15:53:56 -070086CMAKE_FLAGS=(
87 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
88 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -070089 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -070090)
91
Matthew Barthb4aea672016-11-10 14:59:52 -060092################################# docker img # #################################
93# Create docker image that can run package unit tests
94if [[ "${DISTRO}" == "ubuntu"* ]]; then
95Dockerfile=$(cat << EOF
96FROM ${DOCKER_BASE}${DISTRO}
97
98ENV DEBIAN_FRONTEND noninteractive
99
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700100# We need the keys to be imported for dbgsym repos
101# New releases have a package, older ones fall back to manual fetching
102# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
103RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
104 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
105
106# Parse the current repo list into a debug repo list
107RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
108
109# Remove non-existent debug repos
110RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
111
112RUN cat /etc/apt/sources.list.d/debug.list
113
Matthew Barthb4aea672016-11-10 14:59:52 -0600114RUN apt-get update && apt-get install -yy \
115 gcc \
116 g++ \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700117 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600118 libc6-dev \
119 libtool \
120 cmake \
121 python \
122 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -0600123 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -0600124 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -0600125 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930126 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -0600127 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -0700128 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -0500129 python3 \
130 python3-dev\
131 python3-yaml \
132 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930133 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500134 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -0600135 pkg-config \
136 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700137 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600138 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700139 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600140 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500141 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700142 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500143 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700144 libpng-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -0600145 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700146 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600147 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500148 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800149 iputils-ping \
Patrick Venture52164fd2018-08-28 16:12:47 -0700150 clang-format-6.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530151 iproute2 \
152 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700153 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530154 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700155 libsnmp-dev \
156 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700157 valgrind-dbg \
Richard Marian Thomaiyar24660002018-06-26 21:50:57 +0530158 lcov \
James Feist878df5c2018-07-26 14:54:28 -0700159 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530160 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700161 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500162 wget \
163 libldap2-dev
Matthew Barthb4aea672016-11-10 14:59:52 -0600164
Matthew Bartha2366d92017-01-31 09:46:20 -0600165RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600166RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600167
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700168# Snapshot from 2018-06-14
William A. Kennington III5b550082018-10-03 19:25:49 -0700169RUN curl -L https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz | tar -xz && \
170cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700171mkdir build && \
172cd build && \
173cmake ${CMAKE_FLAGS[@]} -DBUILD_GTEST=ON -DBUILD_GMOCK=ON .. && \
Patrick Ventureed136352018-04-19 10:50:03 -0700174make && make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600175
William A. Kennington III5b550082018-10-03 19:25:49 -0700176RUN curl -L https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz | tar -xz && \
177cp -a cereal-1.2.2/include/cereal/ /usr/local/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500178
William A. Kennington III513fe912018-10-03 19:25:01 -0700179RUN mkdir /usr/local/include/nlohmann/ && \
180curl -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 -0800181
William A. Kennington III5b550082018-10-03 19:25:49 -0700182RUN curl -L https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2 | tar -xj && \
183cp -a -r boost_1_66_0/boost /usr/local/include
James Feist878df5c2018-07-26 14:54:28 -0700184
William A. Kennington III581c4d42018-10-03 15:48:20 -0700185# version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
William A. Kennington III5b550082018-10-03 19:25:49 -0700186RUN curl -L https://github.com/leethomason/tinyxml2/archive/37bc3aca429f0164adf68c23444540b4a24b5778.tar.gz | tar -xz && \
187cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700188mkdir 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 IIIbb71cc02018-10-03 19:19:23 -0700201cmake ${CMAKE_FLAGS[@]} .. && \
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 && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700221./configure ${CONFIGURE_FLAGS[@]} --enable-transaction && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030222make -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 && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700228./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700229make -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 && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700235./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
Patrick Venture22329962018-09-14 10:23:04 -0700236make -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 && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700242./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030243make -j$(nproc) && \
244make install
245
246RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \
247cd openpower-dbus-interfaces && \
248./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700249./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030250make -j$(nproc) && \
251make install
252
253RUN git clone https://github.com/openbmc/phosphor-logging && \
254cd phosphor-logging && \
255./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700256./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030257make -j$(nproc) && \
258make install
259
260RUN git clone https://github.com/openbmc/phosphor-objmgr && \
261cd phosphor-objmgr && \
262./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700263./configure ${CONFIGURE_FLAGS[@]} --enable-unpatched-systemd && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030264make -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}"