blob: 1032c6d6855ce1305c0e9d60c148a7b154a8909a [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
Andrew Jeffery221eeda2018-03-08 13:32:43 +103035PKGS="phosphor-objmgr sdbusplus phosphor-logging phosphor-dbus-interfaces"
36PKGS+=" openpower-dbus-interfaces"
37DEPCACHE=
38for package in $PKGS
39do
40 tip=$(git ls-remote https://github.com/openbmc/${package} |
41 grep 'refs/heads/master' | awk '{ print $1 }')
42 DEPCACHE+=${package}:${tip},
43done
44
Matthew Barthb4aea672016-11-10 14:59:52 -060045################################# docker img # #################################
46# Create docker image that can run package unit tests
47if [[ "${DISTRO}" == "ubuntu"* ]]; then
48Dockerfile=$(cat << EOF
49FROM ${DOCKER_BASE}${DISTRO}
50
51ENV DEBIAN_FRONTEND noninteractive
52
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070053# We need the keys to be imported for dbgsym repos
54# New releases have a package, older ones fall back to manual fetching
55# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
56RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
57 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
58
59# Parse the current repo list into a debug repo list
60RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
61
62# Remove non-existent debug repos
63RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
64
65RUN cat /etc/apt/sources.list.d/debug.list
66
Matthew Barthb4aea672016-11-10 14:59:52 -060067RUN apt-get update && apt-get install -yy \
68 gcc \
69 g++ \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070070 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -060071 libc6-dev \
72 libtool \
73 cmake \
74 python \
75 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -060076 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -060077 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -060078 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +093079 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -060080 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -070081 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -050082 python3 \
83 python3-dev\
84 python3-yaml \
85 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +093086 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -050087 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -060088 pkg-config \
89 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -070090 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -060091 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070092 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -060093 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -050094 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070095 libevdev2-dbgsym \
Eddie James1e967902018-08-28 13:12:10 -050096 libvncserver-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -060097 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -070098 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060099 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500100 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800101 iputils-ping \
Patrick Venture52164fd2018-08-28 16:12:47 -0700102 clang-format-6.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530103 iproute2 \
104 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700105 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530106 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700107 libsnmp-dev \
108 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700109 valgrind-dbg \
Richard Marian Thomaiyar24660002018-06-26 21:50:57 +0530110 lcov \
James Feist878df5c2018-07-26 14:54:28 -0700111 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530112 xxd \
113 wget
Matthew Barthb4aea672016-11-10 14:59:52 -0600114
Matthew Bartha2366d92017-01-31 09:46:20 -0600115RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600116RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600117
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700118# Snapshot from 2018-06-14
William A. Kennington III22658b02018-06-29 15:55:17 -0700119RUN curl -L -o googletest.tar.gz https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700120RUN tar -xzf googletest.tar.gz
121RUN cd googletest-* && \
William A. Kennington III972b5872018-06-29 15:59:12 -0700122cmake -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 -0700123make && make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600124
William A. Kennington III22658b02018-06-29 15:55:17 -0700125RUN curl -L -O https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500126RUN tar -xzf v1.2.2.tar.gz
127RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/
128
William A. Kennington III22658b02018-06-29 15:55:17 -0700129RUN curl -L -O https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
Andrew Geisslerd62aa342018-01-05 11:00:00 -0600130RUN mkdir /usr/include/nlohmann/
David Cobbleyedb53d12018-01-04 09:14:34 -0800131RUN cp -a json.hpp /usr/include/nlohmann/
David Cobbleye99c07a2017-12-22 11:39:01 -0800132
James Feist878df5c2018-07-26 14:54:28 -0700133RUN curl -L -O https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2
134RUN tar --bzip2 -xf boost_1_66_0.tar.bz2
135RUN cp -a -r boost_1_66_0/boost /usr/include
136
Matthew Barthb4aea672016-11-10 14:59:52 -0600137RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington III84f207d2018-06-19 19:35:21 -0700138RUN mkdir -p $(dirname ${HOME})
Matthew Barthb4aea672016-11-10 14:59:52 -0600139RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
140
Matthew Barthccb7f852016-11-23 17:43:02 -0600141RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
142
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030143# Sneaky use of Dockerfile semantics! Force a rebuild of the image if master
144# has been updated in any of the repositories in $PKGS: This happens as a
145# consequence of the ls-remotes above, which will change the value of
146# ${DEPCACHE} and therefore trigger rebuilds of all of the following layers.
147RUN echo '${DEPCACHE}' > /root/.depcache
148
149RUN git clone https://github.com/openbmc/sdbusplus && \
150cd sdbusplus && \
151./bootstrap.sh && \
152./configure --enable-transaction && \
153make -j$(nproc) && \
154make install
155
156RUN git clone https://github.com/openbmc/phosphor-dbus-interfaces && \
157cd phosphor-dbus-interfaces && \
158./bootstrap.sh && \
159./configure && \
160make -j$(nproc) && \
161make install
162
163RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \
164cd openpower-dbus-interfaces && \
165./bootstrap.sh && \
166./configure && \
167make -j$(nproc) && \
168make install
169
170RUN git clone https://github.com/openbmc/phosphor-logging && \
171cd phosphor-logging && \
172./bootstrap.sh && \
173./configure --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \
174make -j$(nproc) && \
175make install
176
177RUN git clone https://github.com/openbmc/phosphor-objmgr && \
178cd phosphor-objmgr && \
179./bootstrap.sh && \
180./configure --enable-unpatched-systemd && \
181make -j$(nproc) && \
182make install
183
Matthew Barthb4aea672016-11-10 14:59:52 -0600184RUN /bin/bash
185EOF
186)
187fi
188################################# docker img # #################################
189
190# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700191docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"