blob: 316f1baf017a0f26be6f4470e3d34b0a23ba7086 [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 James61c89bb2018-09-06 13:48:53 -0500103 libjpeg-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 \
Matt Spinlerf2119602018-09-19 16:09:32 -0500120 wget \
Matt Spinlereb31a642018-09-20 09:59:12 -0500121 libtinyxml2-6
Matthew Barthb4aea672016-11-10 14:59:52 -0600122
Matthew Bartha2366d92017-01-31 09:46:20 -0600123RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600124RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600125
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700126# Snapshot from 2018-06-14
William A. Kennington III22658b02018-06-29 15:55:17 -0700127RUN curl -L -o googletest.tar.gz https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700128RUN tar -xzf googletest.tar.gz
129RUN cd googletest-* && \
William A. Kennington III972b5872018-06-29 15:59:12 -0700130cmake -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 -0700131make && make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600132
William A. Kennington III22658b02018-06-29 15:55:17 -0700133RUN curl -L -O https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500134RUN tar -xzf v1.2.2.tar.gz
135RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/
136
William A. Kennington III22658b02018-06-29 15:55:17 -0700137RUN curl -L -O https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
Andrew Geisslerd62aa342018-01-05 11:00:00 -0600138RUN mkdir /usr/include/nlohmann/
David Cobbleyedb53d12018-01-04 09:14:34 -0800139RUN cp -a json.hpp /usr/include/nlohmann/
David Cobbleye99c07a2017-12-22 11:39:01 -0800140
James Feist878df5c2018-07-26 14:54:28 -0700141RUN curl -L -O https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2
142RUN tar --bzip2 -xf boost_1_66_0.tar.bz2
143RUN cp -a -r boost_1_66_0/boost /usr/include
144
Matthew Barthb4aea672016-11-10 14:59:52 -0600145RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington III84f207d2018-06-19 19:35:21 -0700146RUN mkdir -p $(dirname ${HOME})
Matthew Barthb4aea672016-11-10 14:59:52 -0600147RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
148
Matthew Barthccb7f852016-11-23 17:43:02 -0600149RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
150
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030151# Sneaky use of Dockerfile semantics! Force a rebuild of the image if master
152# has been updated in any of the repositories in $PKGS: This happens as a
153# consequence of the ls-remotes above, which will change the value of
154# ${DEPCACHE} and therefore trigger rebuilds of all of the following layers.
155RUN echo '${DEPCACHE}' > /root/.depcache
156
157RUN git clone https://github.com/openbmc/sdbusplus && \
158cd sdbusplus && \
159./bootstrap.sh && \
160./configure --enable-transaction && \
161make -j$(nproc) && \
162make install
163
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700164RUN git clone https://github.com/openbmc/sdeventplus && \
165cd sdeventplus && \
166./bootstrap.sh && \
167./configure --disable-tests --disable-examples && \
168make -j$(nproc) && \
169make install
170
Patrick Venture22329962018-09-14 10:23:04 -0700171RUN git clone https://github.com/openbmc/gpioplus && \
172cd gpioplus && \
173./bootstrap.sh && \
174./configure --disable-tests --disable-examples && \
175make -j$(nproc) && \
176make install
177
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030178RUN git clone https://github.com/openbmc/phosphor-dbus-interfaces && \
179cd phosphor-dbus-interfaces && \
180./bootstrap.sh && \
181./configure && \
182make -j$(nproc) && \
183make install
184
185RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \
186cd openpower-dbus-interfaces && \
187./bootstrap.sh && \
188./configure && \
189make -j$(nproc) && \
190make install
191
192RUN git clone https://github.com/openbmc/phosphor-logging && \
193cd phosphor-logging && \
194./bootstrap.sh && \
195./configure --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \
196make -j$(nproc) && \
197make install
198
199RUN git clone https://github.com/openbmc/phosphor-objmgr && \
200cd phosphor-objmgr && \
201./bootstrap.sh && \
202./configure --enable-unpatched-systemd && \
203make -j$(nproc) && \
204make install
205
Eddie James61c89bb2018-09-06 13:48:53 -0500206# Fetch, build, and install latest libvncserver because obmc-ikvm requires a recent commit
207# (libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a). This won't be included in any
208# respository packages for some time.
209RUN git clone https://github.com/LibVNC/libvncserver && \
210cd libvncserver && \
211mkdir build && \
212cd build && \
213cmake -DWITH_PNG=OFF .. && \
214make -j$(nproc) && \
215make install
216
Matthew Barthb4aea672016-11-10 14:59:52 -0600217RUN /bin/bash
218EOF
219)
220fi
221################################# docker img # #################################
222
223# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700224docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"