blob: fac4c97c55c1fe99f163dabaed2ece0019b4d289 [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
Matthew Barthb4aea672016-11-10 14:59:52 -060081################################# docker img # #################################
82# Create docker image that can run package unit tests
83if [[ "${DISTRO}" == "ubuntu"* ]]; then
84Dockerfile=$(cat << EOF
85FROM ${DOCKER_BASE}${DISTRO}
86
87ENV DEBIAN_FRONTEND noninteractive
88
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070089# We need the keys to be imported for dbgsym repos
90# New releases have a package, older ones fall back to manual fetching
91# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
92RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
93 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
94
95# Parse the current repo list into a debug repo list
96RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
97
98# Remove non-existent debug repos
99RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
100
101RUN cat /etc/apt/sources.list.d/debug.list
102
Matthew Barthb4aea672016-11-10 14:59:52 -0600103RUN apt-get update && apt-get install -yy \
104 gcc \
105 g++ \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700106 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600107 libc6-dev \
108 libtool \
109 cmake \
110 python \
111 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -0600112 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -0600113 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -0600114 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930115 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -0600116 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -0700117 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -0500118 python3 \
119 python3-dev\
120 python3-yaml \
121 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930122 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500123 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -0600124 pkg-config \
125 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700126 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600127 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700128 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600129 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500130 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700131 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500132 libjpeg-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -0600133 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700134 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600135 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500136 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800137 iputils-ping \
Patrick Venture52164fd2018-08-28 16:12:47 -0700138 clang-format-6.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530139 iproute2 \
140 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700141 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530142 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700143 libsnmp-dev \
144 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700145 valgrind-dbg \
Richard Marian Thomaiyar24660002018-06-26 21:50:57 +0530146 lcov \
James Feist878df5c2018-07-26 14:54:28 -0700147 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530148 xxd \
Matt Spinlerf69d8a12018-09-25 14:39:53 -0500149 wget
Matthew Barthb4aea672016-11-10 14:59:52 -0600150
Matthew Bartha2366d92017-01-31 09:46:20 -0600151RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600152RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600153
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700154# Snapshot from 2018-06-14
William A. Kennington III22658b02018-06-29 15:55:17 -0700155RUN curl -L -o googletest.tar.gz https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700156RUN tar -xzf googletest.tar.gz
157RUN cd googletest-* && \
William A. Kennington III972b5872018-06-29 15:59:12 -0700158cmake -DBUILD_GTEST=ON -DBUILD_GMOCK=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr . && \
Patrick Ventureed136352018-04-19 10:50:03 -0700159make && make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600160
William A. Kennington III22658b02018-06-29 15:55:17 -0700161RUN curl -L -O https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500162RUN tar -xzf v1.2.2.tar.gz
163RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/
164
William A. Kennington III22658b02018-06-29 15:55:17 -0700165RUN curl -L -O https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
Andrew Geisslerd62aa342018-01-05 11:00:00 -0600166RUN mkdir /usr/include/nlohmann/
David Cobbleyedb53d12018-01-04 09:14:34 -0800167RUN cp -a json.hpp /usr/include/nlohmann/
David Cobbleye99c07a2017-12-22 11:39:01 -0800168
James Feist878df5c2018-07-26 14:54:28 -0700169RUN curl -L -O https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2
170RUN tar --bzip2 -xf boost_1_66_0.tar.bz2
171RUN cp -a -r boost_1_66_0/boost /usr/include
172
Matthew Barthb4aea672016-11-10 14:59:52 -0600173RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington III84f207d2018-06-19 19:35:21 -0700174RUN mkdir -p $(dirname ${HOME})
Matthew Barthb4aea672016-11-10 14:59:52 -0600175RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
176
Matthew Barthccb7f852016-11-23 17:43:02 -0600177RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
178
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030179# Sneaky use of Dockerfile semantics! Force a rebuild of the image if master
William A. Kennington III32deed82018-09-17 20:48:23 -0700180# has been updated in any of the repositories in \$PKGS: This happens as a
181# consequence of the ls-remotes above, which will change the contents of
182# \${DEPCACHE_FILE} and therefore trigger rebuilds of all of the following layers.
183# NOTE: The file is sorted to ensure the ordering is stable.
184RUN echo '$(sort "$DEPCACHE_FILE" | tr '\n' ',')' > /root/.depcache
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030185
186RUN git clone https://github.com/openbmc/sdbusplus && \
187cd sdbusplus && \
188./bootstrap.sh && \
189./configure --enable-transaction && \
190make -j$(nproc) && \
191make install
192
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700193RUN git clone https://github.com/openbmc/sdeventplus && \
194cd sdeventplus && \
195./bootstrap.sh && \
196./configure --disable-tests --disable-examples && \
197make -j$(nproc) && \
198make install
199
Patrick Venture22329962018-09-14 10:23:04 -0700200RUN git clone https://github.com/openbmc/gpioplus && \
201cd gpioplus && \
202./bootstrap.sh && \
203./configure --disable-tests --disable-examples && \
204make -j$(nproc) && \
205make install
206
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030207RUN git clone https://github.com/openbmc/phosphor-dbus-interfaces && \
208cd phosphor-dbus-interfaces && \
209./bootstrap.sh && \
210./configure && \
211make -j$(nproc) && \
212make install
213
214RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \
215cd openpower-dbus-interfaces && \
216./bootstrap.sh && \
217./configure && \
218make -j$(nproc) && \
219make install
220
221RUN git clone https://github.com/openbmc/phosphor-logging && \
222cd phosphor-logging && \
223./bootstrap.sh && \
224./configure --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \
225make -j$(nproc) && \
226make install
227
James Feist4f2652c2018-10-02 15:06:30 -0700228# version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
229RUN curl -L -o tinyxml2.tar.gz https://github.com/leethomason/tinyxml2/archive/37bc3aca429f0164adf68c23444540b4a24b5778.tar.gz && \
230tar -xzf tinyxml2.tar.gz && \
231cd tinyxml2-3* && \
232mkdir build && \
233cd build && \
234cmake .. && \
235make -j$(nproc) && \
236make install
237
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030238RUN git clone https://github.com/openbmc/phosphor-objmgr && \
239cd phosphor-objmgr && \
240./bootstrap.sh && \
241./configure --enable-unpatched-systemd && \
242make -j$(nproc) && \
243make install
244
Eddie James61c89bb2018-09-06 13:48:53 -0500245# Fetch, build, and install latest libvncserver because obmc-ikvm requires a recent commit
246# (libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a). This won't be included in any
247# respository packages for some time.
248RUN git clone https://github.com/LibVNC/libvncserver && \
249cd libvncserver && \
250mkdir build && \
251cd build && \
252cmake -DWITH_PNG=OFF .. && \
253make -j$(nproc) && \
254make install
255
Matthew Barthb4aea672016-11-10 14:59:52 -0600256RUN /bin/bash
257EOF
258)
259fi
260################################# docker img # #################################
261
262# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700263docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"