blob: 63bacbc8ed4e88f72a27c9989591c5364d678599 [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>
9# default is ubuntu:latest
10
11set -uo pipefail
12
13DOCKER_IMG_NAME=${1:-"openbmc/ubuntu-unit-test"}
14DISTRO=${2:-"ubuntu:latest"}
15
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
53RUN apt-get update && apt-get install -yy \
54 gcc \
55 g++ \
56 libc6-dev \
57 libtool \
58 cmake \
59 python \
60 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -060061 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -060062 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -060063 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +093064 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -060065 python-setuptools \
Saqib Khan362ca852017-03-21 10:48:46 -050066 python3 \
67 python3-dev\
68 python3-yaml \
69 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +093070 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -050071 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -060072 pkg-config \
73 autoconf \
74 libsystemd-dev \
Matthew Barth92f93872017-02-08 11:19:27 -060075 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -050076 libevdev-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -060077 sudo \
78 wget \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060079 git \
Saqib Khan5158a322017-10-23 11:31:24 -050080 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -080081 iputils-ping \
Andrew Jefferyf1c614a2018-03-13 14:07:36 +103082 clang-format-5.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +053083 iproute2 \
84 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -070085 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +053086 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -070087 libsnmp-dev \
88 valgrind \
89 lcov
Matthew Barthb4aea672016-11-10 14:59:52 -060090
Matthew Bartha2366d92017-01-31 09:46:20 -060091RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -060092RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -060093
Matthew Barthb4aea672016-11-10 14:59:52 -060094RUN wget http://ftpmirror.gnu.org/autoconf-archive/autoconf-archive-2016.09.16.tar.xz
95RUN tar -xJf autoconf-archive-2016.09.16.tar.xz
96RUN cd autoconf-archive-2016.09.16 && ./configure --prefix=/usr && make && make install
97
Patrick Ventureed136352018-04-19 10:50:03 -070098# Googletest doesn't support pkg-config properly and therefore yocto uses a
99# patch to fix it. This grabs and applies that patch and then builds it.
Brad Bishopfb2adeb2017-05-30 18:25:14 -0400100RUN wget https://github.com/google/googletest/archive/release-1.8.0.tar.gz
101RUN tar -xzf release-1.8.0.tar.gz
Patrick Ventureed136352018-04-19 10:50:03 -0700102RUN wget -O googletest-release-1.8.0/Add-pkg-config-support.patch \
103http://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-test/gtest/gtest/Add-pkg-config-support.patch?h=rocko
104RUN cd googletest-release-1.8.0 && patch -p1 -i Add-pkg-config-support.patch
105RUN cd googletest-release-1.8.0 && \
106cmake -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_INSTALL_LIBDIR:PATH=/usr/lib -DCMAKE_INSTALL_INCLUDEDIR:PATH=/usr/include . && \
107make && make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600108
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500109RUN wget https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz
110RUN tar -xzf v1.2.2.tar.gz
111RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/
112
David Cobbleyedb53d12018-01-04 09:14:34 -0800113RUN wget https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
Andrew Geisslerd62aa342018-01-05 11:00:00 -0600114RUN mkdir /usr/include/nlohmann/
David Cobbleyedb53d12018-01-04 09:14:34 -0800115RUN cp -a json.hpp /usr/include/nlohmann/
David Cobbleye99c07a2017-12-22 11:39:01 -0800116
Matthew Barthb4aea672016-11-10 14:59:52 -0600117RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington III84f207d2018-06-19 19:35:21 -0700118RUN mkdir -p $(dirname ${HOME})
Matthew Barthb4aea672016-11-10 14:59:52 -0600119RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
120
Matthew Barthccb7f852016-11-23 17:43:02 -0600121RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
122
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030123# Sneaky use of Dockerfile semantics! Force a rebuild of the image if master
124# has been updated in any of the repositories in $PKGS: This happens as a
125# consequence of the ls-remotes above, which will change the value of
126# ${DEPCACHE} and therefore trigger rebuilds of all of the following layers.
127RUN echo '${DEPCACHE}' > /root/.depcache
128
129RUN git clone https://github.com/openbmc/sdbusplus && \
130cd sdbusplus && \
131./bootstrap.sh && \
132./configure --enable-transaction && \
133make -j$(nproc) && \
134make install
135
136RUN git clone https://github.com/openbmc/phosphor-dbus-interfaces && \
137cd phosphor-dbus-interfaces && \
138./bootstrap.sh && \
139./configure && \
140make -j$(nproc) && \
141make install
142
143RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \
144cd openpower-dbus-interfaces && \
145./bootstrap.sh && \
146./configure && \
147make -j$(nproc) && \
148make install
149
150RUN git clone https://github.com/openbmc/phosphor-logging && \
151cd phosphor-logging && \
152./bootstrap.sh && \
153./configure --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \
154make -j$(nproc) && \
155make install
156
157RUN git clone https://github.com/openbmc/phosphor-objmgr && \
158cd phosphor-objmgr && \
159./bootstrap.sh && \
160./configure --enable-unpatched-systemd && \
161make -j$(nproc) && \
162make install
163
Matthew Barthb4aea672016-11-10 14:59:52 -0600164RUN /bin/bash
165EOF
166)
167fi
168################################# docker img # #################################
169
170# Build above image
171docker build -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"