blob: 680ce2d89876a399e8894a5b07746ca181f67153 [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"}
Andrew Geissler8557b962018-06-25 16:10:32 -050014DISTRO=${2:-"ubuntu:artful"}
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 \
Saqib Khan362ca852017-03-21 10:48:46 -050081 python3 \
82 python3-dev\
83 python3-yaml \
84 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +093085 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -050086 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -060087 pkg-config \
88 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -070089 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -060090 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070091 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -060092 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -050093 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -070094 libevdev2-dbgsym \
Matthew Barthb4aea672016-11-10 14:59:52 -060095 sudo \
96 wget \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060097 git \
Saqib Khan5158a322017-10-23 11:31:24 -050098 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -080099 iputils-ping \
Andrew Jefferyf1c614a2018-03-13 14:07:36 +1030100 clang-format-5.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530101 iproute2 \
102 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700103 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530104 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700105 libsnmp-dev \
106 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700107 valgrind-dbg \
Richard Marian Thomaiyar24660002018-06-26 21:50:57 +0530108 lcov \
109 libpam0g-dev
Matthew Barthb4aea672016-11-10 14:59:52 -0600110
Matthew Bartha2366d92017-01-31 09:46:20 -0600111RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600112RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600113
William A. Kennington IIIed1ebbc2018-06-20 12:47:23 -0700114# Snapshot from 2018-06-14
115RUN wget -O googletest.tar.gz https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz
116RUN tar -xzf googletest.tar.gz
117RUN cd googletest-* && \
William A. Kennington III972b5872018-06-29 15:59:12 -0700118cmake -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 -0700119make && make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600120
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500121RUN wget https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz
122RUN tar -xzf v1.2.2.tar.gz
123RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/
124
David Cobbleyedb53d12018-01-04 09:14:34 -0800125RUN wget https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
Andrew Geisslerd62aa342018-01-05 11:00:00 -0600126RUN mkdir /usr/include/nlohmann/
David Cobbleyedb53d12018-01-04 09:14:34 -0800127RUN cp -a json.hpp /usr/include/nlohmann/
David Cobbleye99c07a2017-12-22 11:39:01 -0800128
Matthew Barthb4aea672016-11-10 14:59:52 -0600129RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington III84f207d2018-06-19 19:35:21 -0700130RUN mkdir -p $(dirname ${HOME})
Matthew Barthb4aea672016-11-10 14:59:52 -0600131RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
132
Matthew Barthccb7f852016-11-23 17:43:02 -0600133RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
134
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030135# Sneaky use of Dockerfile semantics! Force a rebuild of the image if master
136# has been updated in any of the repositories in $PKGS: This happens as a
137# consequence of the ls-remotes above, which will change the value of
138# ${DEPCACHE} and therefore trigger rebuilds of all of the following layers.
139RUN echo '${DEPCACHE}' > /root/.depcache
140
141RUN git clone https://github.com/openbmc/sdbusplus && \
142cd sdbusplus && \
143./bootstrap.sh && \
144./configure --enable-transaction && \
145make -j$(nproc) && \
146make install
147
148RUN git clone https://github.com/openbmc/phosphor-dbus-interfaces && \
149cd phosphor-dbus-interfaces && \
150./bootstrap.sh && \
151./configure && \
152make -j$(nproc) && \
153make install
154
155RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \
156cd openpower-dbus-interfaces && \
157./bootstrap.sh && \
158./configure && \
159make -j$(nproc) && \
160make install
161
162RUN git clone https://github.com/openbmc/phosphor-logging && \
163cd phosphor-logging && \
164./bootstrap.sh && \
165./configure --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \
166make -j$(nproc) && \
167make install
168
169RUN git clone https://github.com/openbmc/phosphor-objmgr && \
170cd phosphor-objmgr && \
171./bootstrap.sh && \
172./configure --enable-unpatched-systemd && \
173make -j$(nproc) && \
174make install
175
Matthew Barthb4aea672016-11-10 14:59:52 -0600176RUN /bin/bash
177EOF
178)
179fi
180################################# docker img # #################################
181
182# Build above image
183docker build -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"