blob: 37d3a3e56b05ebfe61ae0844d5a01acd5c32fb92 [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#
Andrew Geisslerd79407e2018-11-12 15:26:57 -06005# Script Variables:
6# DOCKER_IMG_NAME: <optional, the name of the docker image to generate>
7# default is openbmc/ubuntu-unit-test
8# DISTRO: <optional, the distro to build a docker image against>
9# default is ubuntu:bionic
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060010# BRANCH: <optional, branch to build from each of the openbmc/
11# respositories>
12# default is master, which will be used if input branch not
13# provided or not found
Matthew Barthb4aea672016-11-10 14:59:52 -060014
15set -uo pipefail
16
Andrew Geisslerd79407e2018-11-12 15:26:57 -060017DOCKER_IMG_NAME=${DOCKER_IMG_NAME:-"openbmc/ubuntu-unit-test"}
18DISTRO=${DISTRO:-"ubuntu:bionic"}
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060019BRANCH=${BRANCH:-"master"}
Matthew Barthb4aea672016-11-10 14:59:52 -060020
21# 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
William A. Kennington III32deed82018-09-17 20:48:23 -070035# Setup temporary files
36DEPCACHE_FILE=""
37cleanup() {
38 local status="$?"
Patrick Venture87445f22018-10-15 17:10:46 -070039 if [[ -n "$DEPCACHE_FILE" ]]; then
William A. Kennington III32deed82018-09-17 20:48:23 -070040 rm -f "$DEPCACHE_FILE"
41 fi
42 trap - EXIT ERR
43 exit "$status"
44}
45trap cleanup EXIT ERR INT TERM QUIT
46DEPCACHE_FILE="$(mktemp)"
47
William A. Kennington III4815f702018-10-03 19:27:42 -070048HEAD_PKGS=(
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070049 phosphor-objmgr
50 sdbusplus
51 sdeventplus
Patrick Venture22329962018-09-14 10:23:04 -070052 gpioplus
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070053 phosphor-logging
54 phosphor-dbus-interfaces
55 openpower-dbus-interfaces
56)
William A. Kennington III32deed82018-09-17 20:48:23 -070057
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.
63generate_depcache_entry() {
64 local package="$1"
65
66 local tip
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060067 # Need to continue if branch not found, hence || true at end
Andrew Geisslerffffc1c2019-01-08 14:00:13 -060068 tip=$(git ls-remote --heads "https://github.com/openbmc/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060069 grep "refs/heads/$BRANCH" | awk '{ print $1 }' || true)
70
71 # If specific branch is not found then try master
72 if [ ! -n "$tip" ]; then
Andrew Geisslerffffc1c2019-01-08 14:00:13 -060073 tip=$(git ls-remote --heads "https://github.com/openbmc/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060074 grep "refs/heads/master" | awk '{ print $1 }')
75 fi
William A. Kennington III32deed82018-09-17 20:48:23 -070076
77 # Lock the file to avoid interlaced writes
78 exec 3>> "$DEPCACHE_FILE"
79 flock -x 3
80 echo "$package:$tip" >&3
81 exec 3>&-
82}
William A. Kennington III4815f702018-10-03 19:27:42 -070083for package in "${HEAD_PKGS[@]}"; do
William A. Kennington III32deed82018-09-17 20:48:23 -070084 generate_depcache_entry "$package" &
Andrew Jeffery221eeda2018-03-08 13:32:43 +103085done
William A. Kennington III32deed82018-09-17 20:48:23 -070086wait
Andrew Jeffery221eeda2018-03-08 13:32:43 +103087
William A. Kennington III4815f702018-10-03 19:27:42 -070088# A list of package versions we are building
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070089# Start off by listing the stating versions of third-party sources
90declare -A PKG_REV=(
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -070091 [boost]=1.68.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070092 [cereal]=v1.2.2
William A. Kennington III1962d572018-09-12 22:38:15 -070093 [CLI11]=v1.6.1
William A. Kennington III3eaf5922018-12-11 18:16:09 -080094 # Snapshot from 2018-12-17
95 [googletest]=9ab640ce5e5120021c5972d7e60f258bfca64d71
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -070096 [json]=v3.3.0
William A. Kennington III1a651822019-01-16 14:48:52 -080097 # Snapshot from 2019-01-11
98 [lcov]=04335632c371b5066e722298c9f8c6f11b210201
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070099 # libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a is required for obmc-ikvm
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -0700100 # Snapshot from 2018-10-08
101 [libvncserver]=7b1ef0ffc4815cab9a96c7278394152bdc89dc4d
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700102 # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
103 [tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
Patrick Venturead4354e2018-10-12 16:59:54 -0700104 [cppcheck]=df32b0fb05f0c951ab0efa691292c7428f3f50a9
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700105)
William A. Kennington III4815f702018-10-03 19:27:42 -0700106
107# Turn the depcache into a dictionary so we can reference the HEAD of each repo
108for line in $(cat "$DEPCACHE_FILE"); do
109 linearr=($(echo "$line" | tr ':' ' '))
110 PKG_REV["${linearr[0]}"]="${linearr[1]}"
111done
112
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700113# Define common flags used for builds
114PREFIX="/usr/local"
115CONFIGURE_FLAGS=(
116 "--prefix=${PREFIX}"
117)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700118CMAKE_FLAGS=(
119 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
120 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700121 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -0700122)
123
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700124# Build the commands needed to compose our final image
125COPY_CMDS=""
126# We must sort the packages, otherwise we might produce an unstable
127# docker file and rebuild the image unnecessarily
128for pkg in $(echo "${!PKG_REV[@]}" | tr ' ' '\n' | LC_COLLATE=C sort -s); do
129 COPY_CMDS+="COPY --from=openbmc-${pkg} ${PREFIX} ${PREFIX}"$'\n'
William A. Kennington III36f26222018-11-01 13:40:18 -0700130 # Workaround for upstream docker bug and multiple COPY cmds
131 # https://github.com/moby/moby/issues/37965
132 COPY_CMDS+="RUN true"$'\n'
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700133done
134
Matthew Barthb4aea672016-11-10 14:59:52 -0600135################################# docker img # #################################
136# Create docker image that can run package unit tests
137if [[ "${DISTRO}" == "ubuntu"* ]]; then
138Dockerfile=$(cat << EOF
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700139FROM ${DOCKER_BASE}${DISTRO} as openbmc-base
Matthew Barthb4aea672016-11-10 14:59:52 -0600140
141ENV DEBIAN_FRONTEND noninteractive
142
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700143# We need the keys to be imported for dbgsym repos
144# New releases have a package, older ones fall back to manual fetching
145# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
146RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
147 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
148
149# Parse the current repo list into a debug repo list
150RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
151
152# Remove non-existent debug repos
153RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
154
155RUN cat /etc/apt/sources.list.d/debug.list
156
Matthew Barthb4aea672016-11-10 14:59:52 -0600157RUN apt-get update && apt-get install -yy \
Andrew Geisslere4b28712019-01-14 08:54:14 -0800158 gcc-8 \
159 g++-8 \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700160 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600161 libc6-dev \
162 libtool \
163 cmake \
164 python \
165 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -0600166 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -0600167 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -0600168 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930169 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -0600170 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -0700171 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -0500172 python3 \
173 python3-dev\
174 python3-yaml \
175 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930176 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500177 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -0600178 pkg-config \
179 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700180 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600181 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700182 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600183 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500184 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700185 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500186 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700187 libpng-dev \
William A. Kennington IIIbaeb4f52018-12-06 14:57:13 -0800188 ninja-build \
Matthew Barthb4aea672016-11-10 14:59:52 -0600189 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700190 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600191 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500192 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800193 iputils-ping \
William A. Kennington IIIfafef892018-12-11 16:52:43 -0800194 clang-6.0 \
Patrick Venture52164fd2018-08-28 16:12:47 -0700195 clang-format-6.0 \
William A. Kennington IIIfafef892018-12-11 16:52:43 -0800196 clang-tidy-6.0 \
197 clang-tools-6.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530198 iproute2 \
199 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700200 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530201 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700202 libsnmp-dev \
203 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700204 valgrind-dbg \
James Feist878df5c2018-07-26 14:54:28 -0700205 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530206 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700207 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500208 wget \
Patrick Venturedef31a82018-12-10 13:24:46 -0800209 libldap2-dev \
210 libprotobuf-dev \
211 protobuf-compiler
Matthew Barthb4aea672016-11-10 14:59:52 -0600212
Andrew Geisslere4b28712019-01-14 08:54:14 -0800213# Make gcc8 and g++8 the default
William A. Kennington III84ba54c2019-01-15 19:36:40 -0800214RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 800 \
215 --slave /usr/bin/g++ g++ /usr/bin/g++-8 \
216 --slave /usr/bin/gcov gcov /usr/bin/gcov-8 \
217 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-8 \
218 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-8
Andrew Geisslere4b28712019-01-14 08:54:14 -0800219
Matthew Bartha2366d92017-01-31 09:46:20 -0600220RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600221RUN pip install pycodestyle
William A. Kennington IIIbaeb4f52018-12-06 14:57:13 -0800222RUN pip3 install meson==0.49.0
Matthew Bartha2366d92017-01-31 09:46:20 -0600223
William A. Kennington III1a651822019-01-16 14:48:52 -0800224FROM openbmc-base as openbmc-lcov
225RUN curl -L https://github.com/linux-test-project/lcov/archive/${PKG_REV['lcov']}.tar.gz | tar -xz && \
226cd lcov-* && \
227make -j$(nproc) && \
228make install
229
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700230FROM openbmc-base as openbmc-googletest
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700231RUN curl -L https://github.com/google/googletest/archive/${PKG_REV['googletest']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700232cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700233mkdir build && \
234cd build && \
William A. Kennington III3eaf5922018-12-11 18:16:09 -0800235cmake ${CMAKE_FLAGS[@]} -DTHREADS_PREFER_PTHREAD_FLAG=ON .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700236make -j$(nproc) && \
237make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600238
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700239FROM openbmc-base as openbmc-cereal
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700240RUN curl -L https://github.com/USCiLab/cereal/archive/${PKG_REV['cereal']}.tar.gz | tar -xz && \
241cp -a cereal-*/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500242
William A. Kennington III1962d572018-09-12 22:38:15 -0700243FROM openbmc-base as openbmc-CLI11
244RUN curl -L https://github.com/CLIUtils/CLI11/archive/${PKG_REV['CLI11']}.tar.gz | tar -xz && \
245cd CLI11-* && \
246mkdir build && \
247cd build && \
Patrick Venture37b27042018-10-15 17:17:36 -0700248cmake ${CMAKE_FLAGS[@]} -DCLI11_TESTING=OFF -DCLI11_EXAMPLES=OFF .. && \
William A. Kennington III1962d572018-09-12 22:38:15 -0700249make -j$(nproc) && \
250make install
251
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700252FROM openbmc-base as openbmc-json
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700253RUN mkdir ${PREFIX}/include/nlohmann/ && \
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700254curl -L -o ${PREFIX}/include/nlohmann/json.hpp https://github.com/nlohmann/json/releases/download/${PKG_REV['json']}/json.hpp
David Cobbleye99c07a2017-12-22 11:39:01 -0800255
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700256FROM openbmc-base as openbmc-boost
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700257RUN curl -L https://dl.bintray.com/boostorg/release/${PKG_REV['boost']}/source/boost_$(echo "${PKG_REV['boost']}" | tr '.' '_').tar.bz2 | tar -xj && \
Vernon Mauery2b168a82018-10-29 14:57:16 -0700258cd boost_*/ && \
259./bootstrap.sh --prefix=${PREFIX} --with-libraries=context,coroutine && \
260./b2 && ./b2 install --prefix=${PREFIX}
James Feist878df5c2018-07-26 14:54:28 -0700261
Patrick Venturead4354e2018-10-12 16:59:54 -0700262FROM openbmc-base as openbmc-cppcheck
263RUN curl -L https://github.com/danmar/cppcheck/archive/${PKG_REV['cppcheck']}.tar.gz | tar -xz && \
264cd cppcheck-* && \
265mkdir "${PREFIX}/cppcheck-cfg" && cp cfg/* "${PREFIX}/cppcheck-cfg/" && \
266make -j$(nproc) CFGDIR="${PREFIX}/cppcheck-cfg" CXXFLAGS="-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function" && \
267make PREFIX=${PREFIX} install
268
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700269FROM openbmc-base as openbmc-tinyxml2
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700270RUN curl -L https://github.com/leethomason/tinyxml2/archive/${PKG_REV['tinyxml2']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700271cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700272mkdir build && \
273cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700274cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700275make -j$(nproc) && \
276make install
277
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700278FROM openbmc-base as openbmc-libvncserver
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700279RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700280cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700281mkdir build && \
282cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700283cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700284make -j$(nproc) && \
285make install
286
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700287FROM openbmc-base as openbmc-sdbusplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700288RUN curl -L https://github.com/openbmc/sdbusplus/archive/${PKG_REV['sdbusplus']}.tar.gz | tar -xz && \
289cd sdbusplus-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030290./bootstrap.sh && \
Patrick Venture380907a2018-12-03 13:13:25 -0800291./configure ${CONFIGURE_FLAGS[@]} --disable-tests --enable-transaction && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030292make -j$(nproc) && \
293make install
294
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700295FROM openbmc-base as openbmc-sdeventplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700296RUN curl -L https://github.com/openbmc/sdeventplus/archive/${PKG_REV['sdeventplus']}.tar.gz | tar -xz && \
297cd sdeventplus-* && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700298./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700299./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700300make -j$(nproc) && \
301make install
302
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700303FROM openbmc-base as openbmc-gpioplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700304RUN curl -L https://github.com/openbmc/gpioplus/archive/${PKG_REV['gpioplus']}.tar.gz | tar -xz && \
305cd gpioplus-* && \
Patrick Venture22329962018-09-14 10:23:04 -0700306./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700307./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
Patrick Venture22329962018-09-14 10:23:04 -0700308make -j$(nproc) && \
309make install
310
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700311FROM openbmc-base as openbmc-phosphor-dbus-interfaces
312COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700313RUN curl -L https://github.com/openbmc/phosphor-dbus-interfaces/archive/${PKG_REV['phosphor-dbus-interfaces']}.tar.gz | tar -xz && \
314cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030315./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700316./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030317make -j$(nproc) && \
318make install
319
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700320FROM openbmc-base as openbmc-openpower-dbus-interfaces
321COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700322RUN curl -L https://github.com/openbmc/openpower-dbus-interfaces/archive/${PKG_REV['openpower-dbus-interfaces']}.tar.gz | tar -xz && \
323cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030324./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700325./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030326make -j$(nproc) && \
327make install
328
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700329FROM openbmc-base as openbmc-phosphor-logging
330COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
331COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
332COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinler1d156512018-10-29 09:56:57 -0500333COPY --from=openbmc-openpower-dbus-interfaces ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700334RUN curl -L https://github.com/openbmc/phosphor-logging/archive/${PKG_REV['phosphor-logging']}.tar.gz | tar -xz && \
335cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030336./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700337./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030338make -j$(nproc) && \
339make install
340
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700341FROM openbmc-base as openbmc-phosphor-objmgr
342COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
343COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
344COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
345COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700346RUN curl -L https://github.com/openbmc/phosphor-objmgr/archive/${PKG_REV['phosphor-objmgr']}.tar.gz | tar -xz && \
347cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030348./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700349./configure ${CONFIGURE_FLAGS[@]} --enable-unpatched-systemd && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030350make -j$(nproc) && \
351make install
352
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700353
354# Build the final output image
355FROM openbmc-base
356${COPY_CMDS}
357
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700358# Some of our infrastructure still relies on the presence of this file
359# even though it is no longer needed to rebuild the docker environment
360# NOTE: The file is sorted to ensure the ordering is stable.
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800361RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /tmp/depcache
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700362
363# Final configuration for the workspace
364RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
365RUN mkdir -p $(dirname ${HOME})
366RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
William A. Kennington III3bba8fb2018-12-13 15:07:49 -0800367RUN sed -i '1iDefaults umask=000' /etc/sudoers
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800368RUN echo "${USER} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700369
Matthew Barthb4aea672016-11-10 14:59:52 -0600370RUN /bin/bash
371EOF
372)
373fi
374################################# docker img # #################################
375
376# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700377docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"