Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 1 | #!/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 Geissler | 8557b96 | 2018-06-25 16:10:32 -0500 | [diff] [blame] | 9 | # default is ubuntu:artful |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 10 | |
| 11 | set -uo pipefail |
| 12 | |
| 13 | DOCKER_IMG_NAME=${1:-"openbmc/ubuntu-unit-test"} |
Patrick Venture | 52164fd | 2018-08-28 16:12:47 -0700 | [diff] [blame] | 14 | DISTRO=${2:-"ubuntu:bionic"} |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 15 | |
Matthew Barth | ccb7f85 | 2016-11-23 17:43:02 -0600 | [diff] [blame] | 16 | # Disable autom4te cache as workaround to permission issue |
| 17 | AUTOM4TE_CFG="/root/.autom4te.cfg" |
| 18 | AUTOM4TE="begin-language: \"Autoconf-without-aclocal-m4\"\nargs: --no-cache\n\ |
| 19 | end-language: \"Autoconf-without-aclocal-m4\"" |
| 20 | |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 21 | # Determine the architecture |
| 22 | ARCH=$(uname -m) |
| 23 | case ${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 |
| 33 | esac |
| 34 | |
William A. Kennington III | b4f730a | 2018-09-12 11:21:20 -0700 | [diff] [blame^] | 35 | PKGS=( |
| 36 | phosphor-objmgr |
| 37 | sdbusplus |
| 38 | sdeventplus |
| 39 | phosphor-logging |
| 40 | phosphor-dbus-interfaces |
| 41 | openpower-dbus-interfaces |
| 42 | ) |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 43 | DEPCACHE= |
William A. Kennington III | b4f730a | 2018-09-12 11:21:20 -0700 | [diff] [blame^] | 44 | for package in "${PKGS[@]}" |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 45 | do |
| 46 | tip=$(git ls-remote https://github.com/openbmc/${package} | |
| 47 | grep 'refs/heads/master' | awk '{ print $1 }') |
| 48 | DEPCACHE+=${package}:${tip}, |
| 49 | done |
| 50 | |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 51 | ################################# docker img # ################################# |
| 52 | # Create docker image that can run package unit tests |
| 53 | if [[ "${DISTRO}" == "ubuntu"* ]]; then |
| 54 | Dockerfile=$(cat << EOF |
| 55 | FROM ${DOCKER_BASE}${DISTRO} |
| 56 | |
| 57 | ENV DEBIAN_FRONTEND noninteractive |
| 58 | |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 59 | # We need the keys to be imported for dbgsym repos |
| 60 | # New releases have a package, older ones fall back to manual fetching |
| 61 | # https://wiki.ubuntu.com/Debug%20Symbol%20Packages |
| 62 | RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \ |
| 63 | apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) ) |
| 64 | |
| 65 | # Parse the current repo list into a debug repo list |
| 66 | RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list |
| 67 | |
| 68 | # Remove non-existent debug repos |
| 69 | RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list |
| 70 | |
| 71 | RUN cat /etc/apt/sources.list.d/debug.list |
| 72 | |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 73 | RUN apt-get update && apt-get install -yy \ |
| 74 | gcc \ |
| 75 | g++ \ |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 76 | libc6-dbg \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 77 | libc6-dev \ |
| 78 | libtool \ |
| 79 | cmake \ |
| 80 | python \ |
| 81 | python-dev \ |
Matthew Barth | ccb7f85 | 2016-11-23 17:43:02 -0600 | [diff] [blame] | 82 | python-git \ |
Matthew Barth | 0e90f3c | 2017-01-16 13:43:05 -0600 | [diff] [blame] | 83 | python-yaml \ |
Matthew Barth | 6cc35d8 | 2017-01-18 13:36:31 -0600 | [diff] [blame] | 84 | python-mako \ |
Andrew Jeffery | b720697 | 2018-04-30 11:57:29 +0930 | [diff] [blame] | 85 | python-pip \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 86 | python-setuptools \ |
William A. Kennington III | 22658b0 | 2018-06-29 15:55:17 -0700 | [diff] [blame] | 87 | python-socks \ |
Saqib Khan | 362ca85 | 2017-03-21 10:48:46 -0500 | [diff] [blame] | 88 | python3 \ |
| 89 | python3-dev\ |
| 90 | python3-yaml \ |
| 91 | python3-mako \ |
Andrew Jeffery | b720697 | 2018-04-30 11:57:29 +0930 | [diff] [blame] | 92 | python3-pip \ |
Saqib Khan | 362ca85 | 2017-03-21 10:48:46 -0500 | [diff] [blame] | 93 | python3-setuptools \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 94 | pkg-config \ |
| 95 | autoconf \ |
William A. Kennington III | 7e46dd8 | 2018-06-20 01:17:03 -0700 | [diff] [blame] | 96 | autoconf-archive \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 97 | libsystemd-dev \ |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 98 | libsystemd0-dbgsym \ |
Matthew Barth | 92f9387 | 2017-02-08 11:19:27 -0600 | [diff] [blame] | 99 | libssl-dev \ |
Matthew Barth | 550bc0d | 2017-04-10 13:25:50 -0500 | [diff] [blame] | 100 | libevdev-dev \ |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 101 | libevdev2-dbgsym \ |
Eddie James | 1e96790 | 2018-08-28 13:12:10 -0500 | [diff] [blame] | 102 | libvncserver-dev \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 103 | sudo \ |
William A. Kennington III | 22658b0 | 2018-06-29 15:55:17 -0700 | [diff] [blame] | 104 | curl \ |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 105 | git \ |
Saqib Khan | 5158a32 | 2017-10-23 11:31:24 -0500 | [diff] [blame] | 106 | dbus \ |
Andrew Geissler | 158b0a1 | 2018-01-10 10:46:48 -0800 | [diff] [blame] | 107 | iputils-ping \ |
Patrick Venture | 52164fd | 2018-08-28 16:12:47 -0700 | [diff] [blame] | 108 | clang-format-6.0 \ |
Ratan Gupta | 2f03fd7 | 2018-03-30 22:48:11 +0530 | [diff] [blame] | 109 | iproute2 \ |
| 110 | libnl-3-dev \ |
Patrick Venture | 643d8d0 | 2018-05-10 08:57:15 -0700 | [diff] [blame] | 111 | libnl-genl-3-dev \ |
Ratan Gupta | a0a1e33 | 2018-05-25 10:37:33 +0530 | [diff] [blame] | 112 | libconfig++-dev \ |
William A. Kennington III | 9e2be20 | 2018-06-19 19:35:43 -0700 | [diff] [blame] | 113 | libsnmp-dev \ |
| 114 | valgrind \ |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 115 | valgrind-dbg \ |
Richard Marian Thomaiyar | 2466000 | 2018-06-26 21:50:57 +0530 | [diff] [blame] | 116 | lcov \ |
James Feist | 878df5c | 2018-07-26 14:54:28 -0700 | [diff] [blame] | 117 | libpam0g-dev \ |
Ratan Gupta | 48347e0 | 2018-08-08 17:43:10 +0530 | [diff] [blame] | 118 | xxd \ |
| 119 | wget |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 120 | |
Matthew Barth | a2366d9 | 2017-01-31 09:46:20 -0600 | [diff] [blame] | 121 | RUN pip install inflection |
Adriana Kobylak | 3b02d3f | 2018-01-10 16:33:26 -0600 | [diff] [blame] | 122 | RUN pip install pycodestyle |
Matthew Barth | a2366d9 | 2017-01-31 09:46:20 -0600 | [diff] [blame] | 123 | |
William A. Kennington III | ed1ebbc | 2018-06-20 12:47:23 -0700 | [diff] [blame] | 124 | # Snapshot from 2018-06-14 |
William A. Kennington III | 22658b0 | 2018-06-29 15:55:17 -0700 | [diff] [blame] | 125 | RUN curl -L -o googletest.tar.gz https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz |
William A. Kennington III | ed1ebbc | 2018-06-20 12:47:23 -0700 | [diff] [blame] | 126 | RUN tar -xzf googletest.tar.gz |
| 127 | RUN cd googletest-* && \ |
William A. Kennington III | 972b587 | 2018-06-29 15:59:12 -0700 | [diff] [blame] | 128 | cmake -DBUILD_GTEST=ON -DBUILD_GMOCK=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr . && \ |
Patrick Venture | ed13635 | 2018-04-19 10:50:03 -0700 | [diff] [blame] | 129 | make && make install |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 130 | |
William A. Kennington III | 22658b0 | 2018-06-29 15:55:17 -0700 | [diff] [blame] | 131 | RUN curl -L -O https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz |
Deepak Kodihalli | de7767c | 2017-06-21 02:19:14 -0500 | [diff] [blame] | 132 | RUN tar -xzf v1.2.2.tar.gz |
| 133 | RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/ |
| 134 | |
William A. Kennington III | 22658b0 | 2018-06-29 15:55:17 -0700 | [diff] [blame] | 135 | RUN curl -L -O https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp |
Andrew Geissler | d62aa34 | 2018-01-05 11:00:00 -0600 | [diff] [blame] | 136 | RUN mkdir /usr/include/nlohmann/ |
David Cobbley | edb53d1 | 2018-01-04 09:14:34 -0800 | [diff] [blame] | 137 | RUN cp -a json.hpp /usr/include/nlohmann/ |
David Cobbley | e99c07a | 2017-12-22 11:39:01 -0800 | [diff] [blame] | 138 | |
James Feist | 878df5c | 2018-07-26 14:54:28 -0700 | [diff] [blame] | 139 | RUN curl -L -O https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2 |
| 140 | RUN tar --bzip2 -xf boost_1_66_0.tar.bz2 |
| 141 | RUN cp -a -r boost_1_66_0/boost /usr/include |
| 142 | |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 143 | RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER} |
William A. Kennington III | 84f207d | 2018-06-19 19:35:21 -0700 | [diff] [blame] | 144 | RUN mkdir -p $(dirname ${HOME}) |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 145 | RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER} |
| 146 | |
Matthew Barth | ccb7f85 | 2016-11-23 17:43:02 -0600 | [diff] [blame] | 147 | RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG} |
| 148 | |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 149 | # Sneaky use of Dockerfile semantics! Force a rebuild of the image if master |
| 150 | # has been updated in any of the repositories in $PKGS: This happens as a |
| 151 | # consequence of the ls-remotes above, which will change the value of |
| 152 | # ${DEPCACHE} and therefore trigger rebuilds of all of the following layers. |
| 153 | RUN echo '${DEPCACHE}' > /root/.depcache |
| 154 | |
| 155 | RUN git clone https://github.com/openbmc/sdbusplus && \ |
| 156 | cd sdbusplus && \ |
| 157 | ./bootstrap.sh && \ |
| 158 | ./configure --enable-transaction && \ |
| 159 | make -j$(nproc) && \ |
| 160 | make install |
| 161 | |
William A. Kennington III | b4f730a | 2018-09-12 11:21:20 -0700 | [diff] [blame^] | 162 | RUN git clone https://github.com/openbmc/sdeventplus && \ |
| 163 | cd sdeventplus && \ |
| 164 | ./bootstrap.sh && \ |
| 165 | ./configure --disable-tests --disable-examples && \ |
| 166 | make -j$(nproc) && \ |
| 167 | make install |
| 168 | |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 169 | RUN git clone https://github.com/openbmc/phosphor-dbus-interfaces && \ |
| 170 | cd phosphor-dbus-interfaces && \ |
| 171 | ./bootstrap.sh && \ |
| 172 | ./configure && \ |
| 173 | make -j$(nproc) && \ |
| 174 | make install |
| 175 | |
| 176 | RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \ |
| 177 | cd openpower-dbus-interfaces && \ |
| 178 | ./bootstrap.sh && \ |
| 179 | ./configure && \ |
| 180 | make -j$(nproc) && \ |
| 181 | make install |
| 182 | |
| 183 | RUN git clone https://github.com/openbmc/phosphor-logging && \ |
| 184 | cd phosphor-logging && \ |
| 185 | ./bootstrap.sh && \ |
| 186 | ./configure --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \ |
| 187 | make -j$(nproc) && \ |
| 188 | make install |
| 189 | |
| 190 | RUN git clone https://github.com/openbmc/phosphor-objmgr && \ |
| 191 | cd phosphor-objmgr && \ |
| 192 | ./bootstrap.sh && \ |
| 193 | ./configure --enable-unpatched-systemd && \ |
| 194 | make -j$(nproc) && \ |
| 195 | make install |
| 196 | |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 197 | RUN /bin/bash |
| 198 | EOF |
| 199 | ) |
| 200 | fi |
| 201 | ################################# docker img # ################################# |
| 202 | |
| 203 | # Build above image |
James Feist | 4bd2d45 | 2018-07-24 12:19:59 -0700 | [diff] [blame] | 204 | docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}" |