blob: 85bae94b93640ddc127a7c467ed4a22b4def66ec [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="$?"
Patrick Venture87445f22018-10-15 17:10:46 -070039 if [[ -n "$DEPCACHE_FILE" ]]; then
William A. Kennington III32deed82018-09-17 20:48:23 -070040 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
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070082# Start off by listing the stating versions of third-party sources
83declare -A PKG_REV=(
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -070084 [boost]=1.68.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070085 [cereal]=v1.2.2
William A. Kennington III1962d572018-09-12 22:38:15 -070086 [CLI11]=v1.6.1
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -070087 # Snapshot from 2018-10-11
88 [googletest]=b3b19a796cbb3222fb3a49daf3f0a9378e8505ad
89 [json]=v3.3.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070090 # libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a is required for obmc-ikvm
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -070091 # Snapshot from 2018-10-08
92 [libvncserver]=7b1ef0ffc4815cab9a96c7278394152bdc89dc4d
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070093 # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
94 [tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
95)
William A. Kennington III4815f702018-10-03 19:27:42 -070096
97# Turn the depcache into a dictionary so we can reference the HEAD of each repo
98for line in $(cat "$DEPCACHE_FILE"); do
99 linearr=($(echo "$line" | tr ':' ' '))
100 PKG_REV["${linearr[0]}"]="${linearr[1]}"
101done
102
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700103# Define common flags used for builds
104PREFIX="/usr/local"
105CONFIGURE_FLAGS=(
106 "--prefix=${PREFIX}"
107)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700108CMAKE_FLAGS=(
109 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
110 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700111 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -0700112)
113
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700114# Build the commands needed to compose our final image
115COPY_CMDS=""
116# We must sort the packages, otherwise we might produce an unstable
117# docker file and rebuild the image unnecessarily
118for pkg in $(echo "${!PKG_REV[@]}" | tr ' ' '\n' | LC_COLLATE=C sort -s); do
119 COPY_CMDS+="COPY --from=openbmc-${pkg} ${PREFIX} ${PREFIX}"$'\n'
120done
121
Matthew Barthb4aea672016-11-10 14:59:52 -0600122################################# docker img # #################################
123# Create docker image that can run package unit tests
124if [[ "${DISTRO}" == "ubuntu"* ]]; then
125Dockerfile=$(cat << EOF
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700126FROM ${DOCKER_BASE}${DISTRO} as openbmc-base
Matthew Barthb4aea672016-11-10 14:59:52 -0600127
128ENV DEBIAN_FRONTEND noninteractive
129
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700130# We need the keys to be imported for dbgsym repos
131# New releases have a package, older ones fall back to manual fetching
132# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
133RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
134 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
135
136# Parse the current repo list into a debug repo list
137RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
138
139# Remove non-existent debug repos
140RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
141
142RUN cat /etc/apt/sources.list.d/debug.list
143
Matthew Barthb4aea672016-11-10 14:59:52 -0600144RUN apt-get update && apt-get install -yy \
145 gcc \
146 g++ \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700147 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600148 libc6-dev \
149 libtool \
150 cmake \
151 python \
152 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -0600153 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -0600154 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -0600155 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930156 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -0600157 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -0700158 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -0500159 python3 \
160 python3-dev\
161 python3-yaml \
162 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930163 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500164 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -0600165 pkg-config \
166 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700167 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600168 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700169 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600170 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500171 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700172 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500173 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700174 libpng-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -0600175 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700176 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600177 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500178 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800179 iputils-ping \
Patrick Venture52164fd2018-08-28 16:12:47 -0700180 clang-format-6.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530181 iproute2 \
182 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700183 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530184 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700185 libsnmp-dev \
186 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700187 valgrind-dbg \
Richard Marian Thomaiyar24660002018-06-26 21:50:57 +0530188 lcov \
James Feist878df5c2018-07-26 14:54:28 -0700189 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530190 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700191 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500192 wget \
193 libldap2-dev
Matthew Barthb4aea672016-11-10 14:59:52 -0600194
Matthew Bartha2366d92017-01-31 09:46:20 -0600195RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600196RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600197
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700198FROM openbmc-base as openbmc-googletest
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700199RUN curl -L https://github.com/google/googletest/archive/${PKG_REV['googletest']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700200cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700201mkdir build && \
202cd build && \
203cmake ${CMAKE_FLAGS[@]} -DBUILD_GTEST=ON -DBUILD_GMOCK=ON .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700204make -j$(nproc) && \
205make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600206
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700207FROM openbmc-base as openbmc-cereal
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700208RUN curl -L https://github.com/USCiLab/cereal/archive/${PKG_REV['cereal']}.tar.gz | tar -xz && \
209cp -a cereal-*/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500210
William A. Kennington III1962d572018-09-12 22:38:15 -0700211FROM openbmc-base as openbmc-CLI11
212RUN curl -L https://github.com/CLIUtils/CLI11/archive/${PKG_REV['CLI11']}.tar.gz | tar -xz && \
213cd CLI11-* && \
214mkdir build && \
215cd build && \
Patrick Venture37b27042018-10-15 17:17:36 -0700216cmake ${CMAKE_FLAGS[@]} -DCLI11_TESTING=OFF -DCLI11_EXAMPLES=OFF .. && \
William A. Kennington III1962d572018-09-12 22:38:15 -0700217make -j$(nproc) && \
218make install
219
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700220FROM openbmc-base as openbmc-json
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700221RUN mkdir ${PREFIX}/include/nlohmann/ && \
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700222curl -L -o ${PREFIX}/include/nlohmann/json.hpp https://github.com/nlohmann/json/releases/download/${PKG_REV['json']}/json.hpp
David Cobbleye99c07a2017-12-22 11:39:01 -0800223
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700224FROM openbmc-base as openbmc-boost
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700225RUN curl -L https://dl.bintray.com/boostorg/release/${PKG_REV['boost']}/source/boost_$(echo "${PKG_REV['boost']}" | tr '.' '_').tar.bz2 | tar -xj && \
226cp -a -r boost_*/boost ${PREFIX}/include
James Feist878df5c2018-07-26 14:54:28 -0700227
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700228FROM openbmc-base as openbmc-tinyxml2
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700229RUN curl -L https://github.com/leethomason/tinyxml2/archive/${PKG_REV['tinyxml2']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700230cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700231mkdir build && \
232cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700233cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700234make -j$(nproc) && \
235make install
236
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700237FROM openbmc-base as openbmc-libvncserver
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700238RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700239cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700240mkdir build && \
241cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700242cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700243make -j$(nproc) && \
244make install
245
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700246FROM openbmc-base as openbmc-sdbusplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700247RUN curl -L https://github.com/openbmc/sdbusplus/archive/${PKG_REV['sdbusplus']}.tar.gz | tar -xz && \
248cd sdbusplus-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030249./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700250./configure ${CONFIGURE_FLAGS[@]} --enable-transaction && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030251make -j$(nproc) && \
252make install
253
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700254FROM openbmc-base as openbmc-sdeventplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700255RUN curl -L https://github.com/openbmc/sdeventplus/archive/${PKG_REV['sdeventplus']}.tar.gz | tar -xz && \
256cd sdeventplus-* && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700257./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700258./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700259make -j$(nproc) && \
260make install
261
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700262FROM openbmc-base as openbmc-gpioplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700263RUN curl -L https://github.com/openbmc/gpioplus/archive/${PKG_REV['gpioplus']}.tar.gz | tar -xz && \
264cd gpioplus-* && \
Patrick Venture22329962018-09-14 10:23:04 -0700265./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700266./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
Patrick Venture22329962018-09-14 10:23:04 -0700267make -j$(nproc) && \
268make install
269
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700270FROM openbmc-base as openbmc-phosphor-dbus-interfaces
271COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700272RUN curl -L https://github.com/openbmc/phosphor-dbus-interfaces/archive/${PKG_REV['phosphor-dbus-interfaces']}.tar.gz | tar -xz && \
273cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030274./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700275./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030276make -j$(nproc) && \
277make install
278
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700279FROM openbmc-base as openbmc-openpower-dbus-interfaces
280COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700281RUN curl -L https://github.com/openbmc/openpower-dbus-interfaces/archive/${PKG_REV['openpower-dbus-interfaces']}.tar.gz | tar -xz && \
282cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030283./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700284./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030285make -j$(nproc) && \
286make install
287
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700288FROM openbmc-base as openbmc-phosphor-logging
289COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
290COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
291COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700292RUN curl -L https://github.com/openbmc/phosphor-logging/archive/${PKG_REV['phosphor-logging']}.tar.gz | tar -xz && \
293cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030294./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700295./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030296make -j$(nproc) && \
297make install
298
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700299FROM openbmc-base as openbmc-phosphor-objmgr
300COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
301COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
302COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
303COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700304RUN curl -L https://github.com/openbmc/phosphor-objmgr/archive/${PKG_REV['phosphor-objmgr']}.tar.gz | tar -xz && \
305cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030306./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700307./configure ${CONFIGURE_FLAGS[@]} --enable-unpatched-systemd && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030308make -j$(nproc) && \
309make install
310
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700311
312# Build the final output image
313FROM openbmc-base
314${COPY_CMDS}
315
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700316RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
317
318# Some of our infrastructure still relies on the presence of this file
319# even though it is no longer needed to rebuild the docker environment
320# NOTE: The file is sorted to ensure the ordering is stable.
321RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /root/.depcache
322
323# Final configuration for the workspace
324RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
325RUN mkdir -p $(dirname ${HOME})
326RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
327
Matthew Barthb4aea672016-11-10 14:59:52 -0600328RUN /bin/bash
329EOF
330)
331fi
332################################# docker img # #################################
333
334# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700335docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"