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 | 32deed8 | 2018-09-17 20:48:23 -0700 | [diff] [blame] | 35 | # Setup temporary files |
| 36 | DEPCACHE_FILE="" |
| 37 | cleanup() { |
| 38 | local status="$?" |
| 39 | if [ -n "$DEPCACHE_FILE" ]; then |
| 40 | rm -f "$DEPCACHE_FILE" |
| 41 | fi |
| 42 | trap - EXIT ERR |
| 43 | exit "$status" |
| 44 | } |
| 45 | trap cleanup EXIT ERR INT TERM QUIT |
| 46 | DEPCACHE_FILE="$(mktemp)" |
| 47 | |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 48 | HEAD_PKGS=( |
William A. Kennington III | b4f730a | 2018-09-12 11:21:20 -0700 | [diff] [blame] | 49 | phosphor-objmgr |
| 50 | sdbusplus |
| 51 | sdeventplus |
Patrick Venture | 2232996 | 2018-09-14 10:23:04 -0700 | [diff] [blame] | 52 | gpioplus |
William A. Kennington III | b4f730a | 2018-09-12 11:21:20 -0700 | [diff] [blame] | 53 | phosphor-logging |
| 54 | phosphor-dbus-interfaces |
| 55 | openpower-dbus-interfaces |
| 56 | ) |
William A. Kennington III | 32deed8 | 2018-09-17 20:48:23 -0700 | [diff] [blame] | 57 | |
| 58 | # Generate a list of depcache entries |
| 59 | # We want to do this in parallel since the package list is growing |
| 60 | # and the network lookup is low overhead but decently high latency. |
| 61 | # This doesn't worry about producing a stable DEPCACHE_FILE, that is |
| 62 | # done by readers who need a stable ordering. |
| 63 | generate_depcache_entry() { |
| 64 | local package="$1" |
| 65 | |
| 66 | local tip |
| 67 | tip=$(git ls-remote "https://github.com/openbmc/${package}" | |
| 68 | grep 'refs/heads/master' | awk '{ print $1 }') |
| 69 | |
| 70 | # Lock the file to avoid interlaced writes |
| 71 | exec 3>> "$DEPCACHE_FILE" |
| 72 | flock -x 3 |
| 73 | echo "$package:$tip" >&3 |
| 74 | exec 3>&- |
| 75 | } |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 76 | for package in "${HEAD_PKGS[@]}"; do |
William A. Kennington III | 32deed8 | 2018-09-17 20:48:23 -0700 | [diff] [blame] | 77 | generate_depcache_entry "$package" & |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 78 | done |
William A. Kennington III | 32deed8 | 2018-09-17 20:48:23 -0700 | [diff] [blame] | 79 | wait |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 80 | |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 81 | # A list of package versions we are building |
| 82 | declare -A PKG_REV=() |
| 83 | |
| 84 | # Turn the depcache into a dictionary so we can reference the HEAD of each repo |
| 85 | for line in $(cat "$DEPCACHE_FILE"); do |
| 86 | linearr=($(echo "$line" | tr ':' ' ')) |
| 87 | PKG_REV["${linearr[0]}"]="${linearr[1]}" |
| 88 | done |
| 89 | |
William A. Kennington III | 3cf94fd | 2018-10-03 19:16:55 -0700 | [diff] [blame] | 90 | # Define common flags used for builds |
| 91 | PREFIX="/usr/local" |
| 92 | CONFIGURE_FLAGS=( |
| 93 | "--prefix=${PREFIX}" |
| 94 | ) |
William A. Kennington III | 4a67c40 | 2018-10-03 15:53:56 -0700 | [diff] [blame] | 95 | CMAKE_FLAGS=( |
| 96 | "-DCMAKE_BUILD_TYPE=RelWithDebInfo" |
| 97 | "-DBUILD_SHARED_LIBS=ON" |
William A. Kennington III | 3cf94fd | 2018-10-03 19:16:55 -0700 | [diff] [blame] | 98 | "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}" |
William A. Kennington III | 4a67c40 | 2018-10-03 15:53:56 -0700 | [diff] [blame] | 99 | ) |
| 100 | |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 101 | ################################# docker img # ################################# |
| 102 | # Create docker image that can run package unit tests |
| 103 | if [[ "${DISTRO}" == "ubuntu"* ]]; then |
| 104 | Dockerfile=$(cat << EOF |
| 105 | FROM ${DOCKER_BASE}${DISTRO} |
| 106 | |
| 107 | ENV DEBIAN_FRONTEND noninteractive |
| 108 | |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 109 | # We need the keys to be imported for dbgsym repos |
| 110 | # New releases have a package, older ones fall back to manual fetching |
| 111 | # https://wiki.ubuntu.com/Debug%20Symbol%20Packages |
| 112 | RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \ |
| 113 | apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) ) |
| 114 | |
| 115 | # Parse the current repo list into a debug repo list |
| 116 | RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list |
| 117 | |
| 118 | # Remove non-existent debug repos |
| 119 | RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list |
| 120 | |
| 121 | RUN cat /etc/apt/sources.list.d/debug.list |
| 122 | |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 123 | RUN apt-get update && apt-get install -yy \ |
| 124 | gcc \ |
| 125 | g++ \ |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 126 | libc6-dbg \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 127 | libc6-dev \ |
| 128 | libtool \ |
| 129 | cmake \ |
| 130 | python \ |
| 131 | python-dev \ |
Matthew Barth | ccb7f85 | 2016-11-23 17:43:02 -0600 | [diff] [blame] | 132 | python-git \ |
Matthew Barth | 0e90f3c | 2017-01-16 13:43:05 -0600 | [diff] [blame] | 133 | python-yaml \ |
Matthew Barth | 6cc35d8 | 2017-01-18 13:36:31 -0600 | [diff] [blame] | 134 | python-mako \ |
Andrew Jeffery | b720697 | 2018-04-30 11:57:29 +0930 | [diff] [blame] | 135 | python-pip \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 136 | python-setuptools \ |
William A. Kennington III | 22658b0 | 2018-06-29 15:55:17 -0700 | [diff] [blame] | 137 | python-socks \ |
Saqib Khan | 362ca85 | 2017-03-21 10:48:46 -0500 | [diff] [blame] | 138 | python3 \ |
| 139 | python3-dev\ |
| 140 | python3-yaml \ |
| 141 | python3-mako \ |
Andrew Jeffery | b720697 | 2018-04-30 11:57:29 +0930 | [diff] [blame] | 142 | python3-pip \ |
Saqib Khan | 362ca85 | 2017-03-21 10:48:46 -0500 | [diff] [blame] | 143 | python3-setuptools \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 144 | pkg-config \ |
| 145 | autoconf \ |
William A. Kennington III | 7e46dd8 | 2018-06-20 01:17:03 -0700 | [diff] [blame] | 146 | autoconf-archive \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 147 | libsystemd-dev \ |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 148 | libsystemd0-dbgsym \ |
Matthew Barth | 92f9387 | 2017-02-08 11:19:27 -0600 | [diff] [blame] | 149 | libssl-dev \ |
Matthew Barth | 550bc0d | 2017-04-10 13:25:50 -0500 | [diff] [blame] | 150 | libevdev-dev \ |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 151 | libevdev2-dbgsym \ |
Eddie James | 61c89bb | 2018-09-06 13:48:53 -0500 | [diff] [blame] | 152 | libjpeg-dev \ |
William A. Kennington III | bb71cc0 | 2018-10-03 19:19:23 -0700 | [diff] [blame] | 153 | libpng-dev \ |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 154 | sudo \ |
William A. Kennington III | 22658b0 | 2018-06-29 15:55:17 -0700 | [diff] [blame] | 155 | curl \ |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 156 | git \ |
Saqib Khan | 5158a32 | 2017-10-23 11:31:24 -0500 | [diff] [blame] | 157 | dbus \ |
Andrew Geissler | 158b0a1 | 2018-01-10 10:46:48 -0800 | [diff] [blame] | 158 | iputils-ping \ |
Patrick Venture | 52164fd | 2018-08-28 16:12:47 -0700 | [diff] [blame] | 159 | clang-format-6.0 \ |
Ratan Gupta | 2f03fd7 | 2018-03-30 22:48:11 +0530 | [diff] [blame] | 160 | iproute2 \ |
| 161 | libnl-3-dev \ |
Patrick Venture | 643d8d0 | 2018-05-10 08:57:15 -0700 | [diff] [blame] | 162 | libnl-genl-3-dev \ |
Ratan Gupta | a0a1e33 | 2018-05-25 10:37:33 +0530 | [diff] [blame] | 163 | libconfig++-dev \ |
William A. Kennington III | 9e2be20 | 2018-06-19 19:35:43 -0700 | [diff] [blame] | 164 | libsnmp-dev \ |
| 165 | valgrind \ |
William A. Kennington III | b1da127 | 2018-06-20 13:28:05 -0700 | [diff] [blame] | 166 | valgrind-dbg \ |
Richard Marian Thomaiyar | 2466000 | 2018-06-26 21:50:57 +0530 | [diff] [blame] | 167 | lcov \ |
James Feist | 878df5c | 2018-07-26 14:54:28 -0700 | [diff] [blame] | 168 | libpam0g-dev \ |
Ratan Gupta | 48347e0 | 2018-08-08 17:43:10 +0530 | [diff] [blame] | 169 | xxd \ |
James Feist | 182bbf3 | 2018-10-03 09:42:44 -0700 | [diff] [blame] | 170 | libi2c-dev \ |
Andrew Geissler | 61a3397 | 2018-10-05 05:41:30 -0500 | [diff] [blame] | 171 | wget \ |
| 172 | libldap2-dev |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 173 | |
Matthew Barth | a2366d9 | 2017-01-31 09:46:20 -0600 | [diff] [blame] | 174 | RUN pip install inflection |
Adriana Kobylak | 3b02d3f | 2018-01-10 16:33:26 -0600 | [diff] [blame] | 175 | RUN pip install pycodestyle |
Matthew Barth | a2366d9 | 2017-01-31 09:46:20 -0600 | [diff] [blame] | 176 | |
William A. Kennington III | ed1ebbc | 2018-06-20 12:47:23 -0700 | [diff] [blame] | 177 | # Snapshot from 2018-06-14 |
William A. Kennington III | 5b55008 | 2018-10-03 19:25:49 -0700 | [diff] [blame] | 178 | RUN curl -L https://github.com/google/googletest/archive/ba96d0b1161f540656efdaed035b3c062b60e006.tar.gz | tar -xz && \ |
| 179 | cd googletest-* && \ |
William A. Kennington III | b47eea5 | 2018-10-03 17:11:29 -0700 | [diff] [blame] | 180 | mkdir build && \ |
| 181 | cd build && \ |
| 182 | cmake ${CMAKE_FLAGS[@]} -DBUILD_GTEST=ON -DBUILD_GMOCK=ON .. && \ |
William A. Kennington III | 048b5ee | 2018-10-03 19:37:56 -0700 | [diff] [blame^] | 183 | make -j$(nproc) && \ |
| 184 | make install |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 185 | |
William A. Kennington III | 5b55008 | 2018-10-03 19:25:49 -0700 | [diff] [blame] | 186 | RUN curl -L https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz | tar -xz && \ |
William A. Kennington III | c8e8b20 | 2018-10-03 19:35:59 -0700 | [diff] [blame] | 187 | cp -a cereal-1.2.2/include/cereal/ ${PREFIX}/include/ |
Deepak Kodihalli | de7767c | 2017-06-21 02:19:14 -0500 | [diff] [blame] | 188 | |
William A. Kennington III | c8e8b20 | 2018-10-03 19:35:59 -0700 | [diff] [blame] | 189 | RUN mkdir ${PREFIX}/include/nlohmann/ && \ |
| 190 | curl -L -o ${PREFIX}/include/nlohmann/json.hpp https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp |
David Cobbley | e99c07a | 2017-12-22 11:39:01 -0800 | [diff] [blame] | 191 | |
William A. Kennington III | 5b55008 | 2018-10-03 19:25:49 -0700 | [diff] [blame] | 192 | RUN curl -L https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2 | tar -xj && \ |
William A. Kennington III | c8e8b20 | 2018-10-03 19:35:59 -0700 | [diff] [blame] | 193 | cp -a -r boost_1_66_0/boost ${PREFIX}/include |
James Feist | 878df5c | 2018-07-26 14:54:28 -0700 | [diff] [blame] | 194 | |
William A. Kennington III | 581c4d4 | 2018-10-03 15:48:20 -0700 | [diff] [blame] | 195 | # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb |
William A. Kennington III | 5b55008 | 2018-10-03 19:25:49 -0700 | [diff] [blame] | 196 | RUN curl -L https://github.com/leethomason/tinyxml2/archive/37bc3aca429f0164adf68c23444540b4a24b5778.tar.gz | tar -xz && \ |
| 197 | cd tinyxml2-* && \ |
William A. Kennington III | 581c4d4 | 2018-10-03 15:48:20 -0700 | [diff] [blame] | 198 | mkdir build && \ |
| 199 | cd build && \ |
William A. Kennington III | 4a67c40 | 2018-10-03 15:53:56 -0700 | [diff] [blame] | 200 | cmake ${CMAKE_FLAGS[@]} .. && \ |
William A. Kennington III | 581c4d4 | 2018-10-03 15:48:20 -0700 | [diff] [blame] | 201 | make -j$(nproc) && \ |
| 202 | make install |
| 203 | |
| 204 | # Fetch, build, and install latest libvncserver because obmc-ikvm requires a recent commit |
| 205 | # (libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a). This won't be included in any |
| 206 | # respository packages for some time. |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 207 | RUN curl -L https://github.com/LibVNC/libvncserver/archive/dd873fce451e4b7d7cc69056a62e107aae7c8e7a.tar.gz | tar -xz && \ |
| 208 | cd libvncserver-* && \ |
William A. Kennington III | 581c4d4 | 2018-10-03 15:48:20 -0700 | [diff] [blame] | 209 | mkdir build && \ |
| 210 | cd build && \ |
William A. Kennington III | bb71cc0 | 2018-10-03 19:19:23 -0700 | [diff] [blame] | 211 | cmake ${CMAKE_FLAGS[@]} .. && \ |
William A. Kennington III | 581c4d4 | 2018-10-03 15:48:20 -0700 | [diff] [blame] | 212 | make -j$(nproc) && \ |
| 213 | make install |
| 214 | |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 215 | RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER} |
William A. Kennington III | 84f207d | 2018-06-19 19:35:21 -0700 | [diff] [blame] | 216 | RUN mkdir -p $(dirname ${HOME}) |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 217 | RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER} |
| 218 | |
Matthew Barth | ccb7f85 | 2016-11-23 17:43:02 -0600 | [diff] [blame] | 219 | RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG} |
| 220 | |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 221 | # Sneaky use of Dockerfile semantics! Force a rebuild of the image if master |
William A. Kennington III | 32deed8 | 2018-09-17 20:48:23 -0700 | [diff] [blame] | 222 | # has been updated in any of the repositories in \$PKGS: This happens as a |
| 223 | # consequence of the ls-remotes above, which will change the contents of |
| 224 | # \${DEPCACHE_FILE} and therefore trigger rebuilds of all of the following layers. |
| 225 | # NOTE: The file is sorted to ensure the ordering is stable. |
| 226 | RUN echo '$(sort "$DEPCACHE_FILE" | tr '\n' ',')' > /root/.depcache |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 227 | |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 228 | RUN curl -L https://github.com/openbmc/sdbusplus/archive/${PKG_REV['sdbusplus']}.tar.gz | tar -xz && \ |
| 229 | cd sdbusplus-* && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 230 | ./bootstrap.sh && \ |
William A. Kennington III | 3cf94fd | 2018-10-03 19:16:55 -0700 | [diff] [blame] | 231 | ./configure ${CONFIGURE_FLAGS[@]} --enable-transaction && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 232 | make -j$(nproc) && \ |
| 233 | make install |
| 234 | |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 235 | RUN curl -L https://github.com/openbmc/sdeventplus/archive/${PKG_REV['sdeventplus']}.tar.gz | tar -xz && \ |
| 236 | cd sdeventplus-* && \ |
William A. Kennington III | b4f730a | 2018-09-12 11:21:20 -0700 | [diff] [blame] | 237 | ./bootstrap.sh && \ |
William A. Kennington III | 3cf94fd | 2018-10-03 19:16:55 -0700 | [diff] [blame] | 238 | ./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \ |
William A. Kennington III | b4f730a | 2018-09-12 11:21:20 -0700 | [diff] [blame] | 239 | make -j$(nproc) && \ |
| 240 | make install |
| 241 | |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 242 | RUN curl -L https://github.com/openbmc/gpioplus/archive/${PKG_REV['gpioplus']}.tar.gz | tar -xz && \ |
| 243 | cd gpioplus-* && \ |
Patrick Venture | 2232996 | 2018-09-14 10:23:04 -0700 | [diff] [blame] | 244 | ./bootstrap.sh && \ |
William A. Kennington III | 3cf94fd | 2018-10-03 19:16:55 -0700 | [diff] [blame] | 245 | ./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \ |
Patrick Venture | 2232996 | 2018-09-14 10:23:04 -0700 | [diff] [blame] | 246 | make -j$(nproc) && \ |
| 247 | make install |
| 248 | |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 249 | RUN curl -L https://github.com/openbmc/phosphor-dbus-interfaces/archive/${PKG_REV['phosphor-dbus-interfaces']}.tar.gz | tar -xz && \ |
| 250 | cd phosphor-dbus-interfaces-* && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 251 | ./bootstrap.sh && \ |
William A. Kennington III | 3cf94fd | 2018-10-03 19:16:55 -0700 | [diff] [blame] | 252 | ./configure ${CONFIGURE_FLAGS[@]} && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 253 | make -j$(nproc) && \ |
| 254 | make install |
| 255 | |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 256 | RUN curl -L https://github.com/openbmc/openpower-dbus-interfaces/archive/${PKG_REV['openpower-dbus-interfaces']}.tar.gz | tar -xz && \ |
| 257 | cd openpower-dbus-interfaces-* && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 258 | ./bootstrap.sh && \ |
William A. Kennington III | 3cf94fd | 2018-10-03 19:16:55 -0700 | [diff] [blame] | 259 | ./configure ${CONFIGURE_FLAGS[@]} && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 260 | make -j$(nproc) && \ |
| 261 | make install |
| 262 | |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 263 | RUN curl -L https://github.com/openbmc/phosphor-logging/archive/${PKG_REV['phosphor-logging']}.tar.gz | tar -xz && \ |
| 264 | cd phosphor-logging-* && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 265 | ./bootstrap.sh && \ |
William A. Kennington III | c8e8b20 | 2018-10-03 19:35:59 -0700 | [diff] [blame] | 266 | ./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 267 | make -j$(nproc) && \ |
| 268 | make install |
| 269 | |
William A. Kennington III | 4815f70 | 2018-10-03 19:27:42 -0700 | [diff] [blame] | 270 | RUN curl -L https://github.com/openbmc/phosphor-objmgr/archive/${PKG_REV['phosphor-objmgr']}.tar.gz | tar -xz && \ |
| 271 | cd phosphor-objmgr-* && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 272 | ./bootstrap.sh && \ |
William A. Kennington III | 3cf94fd | 2018-10-03 19:16:55 -0700 | [diff] [blame] | 273 | ./configure ${CONFIGURE_FLAGS[@]} --enable-unpatched-systemd && \ |
Andrew Jeffery | 221eeda | 2018-03-08 13:32:43 +1030 | [diff] [blame] | 274 | make -j$(nproc) && \ |
| 275 | make install |
| 276 | |
Matthew Barth | b4aea67 | 2016-11-10 14:59:52 -0600 | [diff] [blame] | 277 | RUN /bin/bash |
| 278 | EOF |
| 279 | ) |
| 280 | fi |
| 281 | ################################# docker img # ################################# |
| 282 | |
| 283 | # Build above image |
James Feist | 4bd2d45 | 2018-07-24 12:19:59 -0700 | [diff] [blame] | 284 | docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}" |