blob: 9123b889a00e320f721e744e560e883d6c49fb97 [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 IIIb4f730a2018-09-12 11:21:20 -070035PKGS=(
36 phosphor-objmgr
37 sdbusplus
38 sdeventplus
Patrick Venture22329962018-09-14 10:23:04 -070039 gpioplus
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070040 phosphor-logging
41 phosphor-dbus-interfaces
42 openpower-dbus-interfaces
43)
Andrew Jeffery221eeda2018-03-08 13:32:43 +103044DEPCACHE=
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070045for package in "${PKGS[@]}"
Andrew Jeffery221eeda2018-03-08 13:32:43 +103046do
47 tip=$(git ls-remote https://github.com/openbmc/${package} |
48 grep 'refs/heads/master' | awk '{ print $1 }')
49 DEPCACHE+=${package}:${tip},
50done
51
Matthew Barthb4aea672016-11-10 14:59:52 -060052################################# docker img # #################################
53# Create docker image that can run package unit tests
54if [[ "${DISTRO}" == "ubuntu"* ]]; then
55Dockerfile=$(cat << EOF
56FROM ${DOCKER_BASE}${DISTRO}
57
58ENV DEBIAN_FRONTEND noninteractive
59
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070060# We need the keys to be imported for dbgsym repos
61# New releases have a package, older ones fall back to manual fetching
62# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
63RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
64 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
65
66# Parse the current repo list into a debug repo list
67RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
68
69# Remove non-existent debug repos
70RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
71
72RUN cat /etc/apt/sources.list.d/debug.list
73
Matthew Barthb4aea672016-11-10 14:59:52 -060074RUN apt-get update && apt-get install -yy \
75 gcc \
76 g++ \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070077 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -060078 libc6-dev \
79 libtool \
80 cmake \
81 python \
82 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -060083 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -060084 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -060085 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +093086 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -060087 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -070088 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -050089 python3 \
90 python3-dev\
91 python3-yaml \
92 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +093093 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -050094 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -060095 pkg-config \
96 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -070097 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -060098 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070099 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600100 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500101 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700102 libevdev2-dbgsym \
Eddie James1e967902018-08-28 13:12:10 -0500103 libvncserver-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -0600104 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700105 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600106 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500107 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800108 iputils-ping \
Patrick Venture52164fd2018-08-28 16:12:47 -0700109 clang-format-6.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530110 iproute2 \
111 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700112 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530113 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700114 libsnmp-dev \
115 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700116 valgrind-dbg \
Richard Marian Thomaiyar24660002018-06-26 21:50:57 +0530117 lcov \
James Feist878df5c2018-07-26 14:54:28 -0700118 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530119 xxd \
120 wget
Matthew Barthb4aea672016-11-10 14:59:52 -0600121
Matthew Bartha2366d92017-01-31 09:46:20 -0600122RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600123RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600124
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700125# Snapshot from 2018-06-14
William A. Kennington III22658b02018-06-29 15:55:17 -0700126RUN curl -L -o googletest.tar.gz https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700127RUN tar -xzf googletest.tar.gz
128RUN cd googletest-* && \
William A. Kennington III972b5872018-06-29 15:59:12 -0700129cmake -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 -0700130make && make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600131
William A. Kennington III22658b02018-06-29 15:55:17 -0700132RUN curl -L -O https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500133RUN tar -xzf v1.2.2.tar.gz
134RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/
135
William A. Kennington III22658b02018-06-29 15:55:17 -0700136RUN curl -L -O https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
Andrew Geisslerd62aa342018-01-05 11:00:00 -0600137RUN mkdir /usr/include/nlohmann/
David Cobbleyedb53d12018-01-04 09:14:34 -0800138RUN cp -a json.hpp /usr/include/nlohmann/
David Cobbleye99c07a2017-12-22 11:39:01 -0800139
James Feist878df5c2018-07-26 14:54:28 -0700140RUN curl -L -O https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2
141RUN tar --bzip2 -xf boost_1_66_0.tar.bz2
142RUN cp -a -r boost_1_66_0/boost /usr/include
143
Matthew Barthb4aea672016-11-10 14:59:52 -0600144RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington III84f207d2018-06-19 19:35:21 -0700145RUN mkdir -p $(dirname ${HOME})
Matthew Barthb4aea672016-11-10 14:59:52 -0600146RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
147
Matthew Barthccb7f852016-11-23 17:43:02 -0600148RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
149
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030150# Sneaky use of Dockerfile semantics! Force a rebuild of the image if master
151# has been updated in any of the repositories in $PKGS: This happens as a
152# consequence of the ls-remotes above, which will change the value of
153# ${DEPCACHE} and therefore trigger rebuilds of all of the following layers.
154RUN echo '${DEPCACHE}' > /root/.depcache
155
156RUN git clone https://github.com/openbmc/sdbusplus && \
157cd sdbusplus && \
158./bootstrap.sh && \
159./configure --enable-transaction && \
160make -j$(nproc) && \
161make install
162
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700163RUN git clone https://github.com/openbmc/sdeventplus && \
164cd sdeventplus && \
165./bootstrap.sh && \
166./configure --disable-tests --disable-examples && \
167make -j$(nproc) && \
168make install
169
Patrick Venture22329962018-09-14 10:23:04 -0700170RUN git clone https://github.com/openbmc/gpioplus && \
171cd gpioplus && \
172./bootstrap.sh && \
173./configure --disable-tests --disable-examples && \
174make -j$(nproc) && \
175make install
176
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030177RUN git clone https://github.com/openbmc/phosphor-dbus-interfaces && \
178cd phosphor-dbus-interfaces && \
179./bootstrap.sh && \
180./configure && \
181make -j$(nproc) && \
182make install
183
184RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \
185cd openpower-dbus-interfaces && \
186./bootstrap.sh && \
187./configure && \
188make -j$(nproc) && \
189make install
190
191RUN git clone https://github.com/openbmc/phosphor-logging && \
192cd phosphor-logging && \
193./bootstrap.sh && \
194./configure --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \
195make -j$(nproc) && \
196make install
197
198RUN git clone https://github.com/openbmc/phosphor-objmgr && \
199cd phosphor-objmgr && \
200./bootstrap.sh && \
201./configure --enable-unpatched-systemd && \
202make -j$(nproc) && \
203make install
204
Matthew Barthb4aea672016-11-10 14:59:52 -0600205RUN /bin/bash
206EOF
207)
208fi
209################################# docker img # #################################
210
211# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700212docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"