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