| 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> | 
 | 9 | #            default is ubuntu:latest | 
 | 10 |  | 
 | 11 | set -uo pipefail | 
 | 12 |  | 
 | 13 | DOCKER_IMG_NAME=${1:-"openbmc/ubuntu-unit-test"} | 
 | 14 | DISTRO=${2:-"ubuntu:latest"} | 
 | 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 |  | 
| Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 35 | PKGS="phosphor-objmgr sdbusplus phosphor-logging phosphor-dbus-interfaces" | 
 | 36 | PKGS+=" openpower-dbus-interfaces" | 
 | 37 | DEPCACHE= | 
 | 38 | for package in $PKGS | 
 | 39 | do | 
 | 40 |     tip=$(git ls-remote https://github.com/openbmc/${package} | | 
 | 41 |            grep 'refs/heads/master' | awk '{ print $1 }') | 
 | 42 |     DEPCACHE+=${package}:${tip}, | 
 | 43 | done | 
 | 44 |  | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 45 | ################################# docker img # ################################# | 
 | 46 | # Create docker image that can run package unit tests | 
 | 47 | if [[ "${DISTRO}" == "ubuntu"* ]]; then | 
 | 48 | Dockerfile=$(cat << EOF | 
 | 49 | FROM ${DOCKER_BASE}${DISTRO} | 
 | 50 |  | 
 | 51 | ENV DEBIAN_FRONTEND noninteractive | 
 | 52 |  | 
 | 53 | RUN apt-get update && apt-get install -yy \ | 
 | 54 |     gcc \ | 
 | 55 |     g++ \ | 
 | 56 |     libc6-dev \ | 
 | 57 |     libtool \ | 
 | 58 |     cmake \ | 
 | 59 |     python \ | 
 | 60 |     python-dev \ | 
| Matthew Barth | ccb7f85 | 2016-11-23 17:43:02 -0600 | [diff] [blame] | 61 |     python-git \ | 
| Matthew Barth | 0e90f3c | 2017-01-16 13:43:05 -0600 | [diff] [blame] | 62 |     python-yaml \ | 
| Matthew Barth | 6cc35d8 | 2017-01-18 13:36:31 -0600 | [diff] [blame] | 63 |     python-mako \ | 
| Andrew Jeffery | b720697 | 2018-04-30 11:57:29 +0930 | [diff] [blame] | 64 |     python-pip \ | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 65 |     python-setuptools \ | 
| Saqib Khan | 362ca85 | 2017-03-21 10:48:46 -0500 | [diff] [blame] | 66 |     python3 \ | 
 | 67 |     python3-dev\ | 
 | 68 |     python3-yaml \ | 
 | 69 |     python3-mako \ | 
| Andrew Jeffery | b720697 | 2018-04-30 11:57:29 +0930 | [diff] [blame] | 70 |     python3-pip \ | 
| Saqib Khan | 362ca85 | 2017-03-21 10:48:46 -0500 | [diff] [blame] | 71 |     python3-setuptools \ | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 72 |     pkg-config \ | 
 | 73 |     autoconf \ | 
 | 74 |     libsystemd-dev \ | 
| Matthew Barth | 92f9387 | 2017-02-08 11:19:27 -0600 | [diff] [blame] | 75 |     libssl-dev \ | 
| Matthew Barth | 550bc0d | 2017-04-10 13:25:50 -0500 | [diff] [blame] | 76 |     libevdev-dev \ | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 77 |     sudo \ | 
 | 78 |     wget \ | 
| Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 79 |     git \ | 
| Saqib Khan | 5158a32 | 2017-10-23 11:31:24 -0500 | [diff] [blame] | 80 |     dbus \ | 
| Andrew Geissler | 158b0a1 | 2018-01-10 10:46:48 -0800 | [diff] [blame] | 81 |     iputils-ping \ | 
| Andrew Jeffery | f1c614a | 2018-03-13 14:07:36 +1030 | [diff] [blame] | 82 |     clang-format-5.0 \ | 
| Ratan Gupta | 2f03fd7 | 2018-03-30 22:48:11 +0530 | [diff] [blame] | 83 |     iproute2 \ | 
 | 84 |     libnl-3-dev \ | 
| Patrick Venture | 643d8d0 | 2018-05-10 08:57:15 -0700 | [diff] [blame] | 85 |     libnl-genl-3-dev \ | 
| Ratan Gupta | a0a1e33 | 2018-05-25 10:37:33 +0530 | [diff] [blame] | 86 |     libconfig++-dev \ | 
| William A. Kennington III | 9e2be20 | 2018-06-19 19:35:43 -0700 | [diff] [blame^] | 87 |     libsnmp-dev \ | 
 | 88 |     valgrind \ | 
 | 89 |     lcov | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 90 |  | 
| Matthew Barth | a2366d9 | 2017-01-31 09:46:20 -0600 | [diff] [blame] | 91 | RUN pip install inflection | 
| Adriana Kobylak | 3b02d3f | 2018-01-10 16:33:26 -0600 | [diff] [blame] | 92 | RUN pip install pycodestyle | 
| Matthew Barth | a2366d9 | 2017-01-31 09:46:20 -0600 | [diff] [blame] | 93 |  | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 94 | RUN wget http://ftpmirror.gnu.org/autoconf-archive/autoconf-archive-2016.09.16.tar.xz | 
 | 95 | RUN tar -xJf autoconf-archive-2016.09.16.tar.xz | 
 | 96 | RUN cd autoconf-archive-2016.09.16 && ./configure --prefix=/usr && make && make install | 
 | 97 |  | 
| Patrick Venture | ed13635 | 2018-04-19 10:50:03 -0700 | [diff] [blame] | 98 | # 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 Bishop | fb2adeb | 2017-05-30 18:25:14 -0400 | [diff] [blame] | 100 | RUN wget https://github.com/google/googletest/archive/release-1.8.0.tar.gz | 
 | 101 | RUN tar -xzf release-1.8.0.tar.gz | 
| Patrick Venture | ed13635 | 2018-04-19 10:50:03 -0700 | [diff] [blame] | 102 | RUN wget -O googletest-release-1.8.0/Add-pkg-config-support.patch \ | 
 | 103 | http://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-test/gtest/gtest/Add-pkg-config-support.patch?h=rocko | 
 | 104 | RUN cd googletest-release-1.8.0 && patch -p1 -i Add-pkg-config-support.patch | 
 | 105 | RUN cd googletest-release-1.8.0 && \ | 
 | 106 | cmake -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_INSTALL_LIBDIR:PATH=/usr/lib -DCMAKE_INSTALL_INCLUDEDIR:PATH=/usr/include . && \ | 
 | 107 | make && make install | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 108 |  | 
| Deepak Kodihalli | de7767c | 2017-06-21 02:19:14 -0500 | [diff] [blame] | 109 | RUN wget https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz | 
 | 110 | RUN tar -xzf v1.2.2.tar.gz | 
 | 111 | RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/ | 
 | 112 |  | 
| David Cobbley | edb53d1 | 2018-01-04 09:14:34 -0800 | [diff] [blame] | 113 | RUN wget https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp | 
| Andrew Geissler | d62aa34 | 2018-01-05 11:00:00 -0600 | [diff] [blame] | 114 | RUN mkdir /usr/include/nlohmann/ | 
| David Cobbley | edb53d1 | 2018-01-04 09:14:34 -0800 | [diff] [blame] | 115 | RUN cp -a json.hpp /usr/include/nlohmann/ | 
| David Cobbley | e99c07a | 2017-12-22 11:39:01 -0800 | [diff] [blame] | 116 |  | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 117 | RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER} | 
| William A. Kennington III | 84f207d | 2018-06-19 19:35:21 -0700 | [diff] [blame] | 118 | RUN mkdir -p $(dirname ${HOME}) | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 119 | RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER} | 
 | 120 |  | 
| Matthew Barth | ccb7f85 | 2016-11-23 17:43:02 -0600 | [diff] [blame] | 121 | RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG} | 
 | 122 |  | 
| Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 123 | # 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. | 
 | 127 | RUN echo '${DEPCACHE}' > /root/.depcache | 
 | 128 |  | 
 | 129 | RUN git clone https://github.com/openbmc/sdbusplus && \ | 
 | 130 | cd sdbusplus && \ | 
 | 131 | ./bootstrap.sh && \ | 
 | 132 | ./configure --enable-transaction && \ | 
 | 133 | make -j$(nproc) && \ | 
 | 134 | make install | 
 | 135 |  | 
 | 136 | RUN git clone https://github.com/openbmc/phosphor-dbus-interfaces && \ | 
 | 137 | cd phosphor-dbus-interfaces && \ | 
 | 138 | ./bootstrap.sh && \ | 
 | 139 | ./configure && \ | 
 | 140 | make -j$(nproc) && \ | 
 | 141 | make install | 
 | 142 |  | 
 | 143 | RUN git clone https://github.com/openbmc/openpower-dbus-interfaces && \ | 
 | 144 | cd openpower-dbus-interfaces && \ | 
 | 145 | ./bootstrap.sh && \ | 
 | 146 | ./configure && \ | 
 | 147 | make -j$(nproc) && \ | 
 | 148 | make install | 
 | 149 |  | 
 | 150 | RUN git clone https://github.com/openbmc/phosphor-logging && \ | 
 | 151 | cd phosphor-logging && \ | 
 | 152 | ./bootstrap.sh && \ | 
 | 153 | ./configure --enable-metadata-processing YAML_DIR=/usr/local/share/phosphor-dbus-yaml/yaml && \ | 
 | 154 | make -j$(nproc) && \ | 
 | 155 | make install | 
 | 156 |  | 
 | 157 | RUN git clone https://github.com/openbmc/phosphor-objmgr && \ | 
 | 158 | cd phosphor-objmgr && \ | 
 | 159 | ./bootstrap.sh && \ | 
 | 160 | ./configure --enable-unpatched-systemd && \ | 
 | 161 | make -j$(nproc) && \ | 
 | 162 | make install | 
 | 163 |  | 
| Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 164 | RUN /bin/bash | 
 | 165 | EOF | 
 | 166 | ) | 
 | 167 | fi | 
 | 168 | ################################# docker img # ################################# | 
 | 169 |  | 
 | 170 | # Build above image | 
 | 171 | docker build -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}" |