blob: efd4d7d0eb69b352373cdce8f247c7bcc5cdc2a4 [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>
William A. Kennington III0232a252019-06-26 12:13:47 -07009# default is ubuntu:eoan
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060010# BRANCH: <optional, branch to build from each of the openbmc/
George Keishing11a6e9e2019-07-22 08:18:40 -050011# repositories>
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060012# 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"}
William A. Kennington III0232a252019-06-26 12:13:47 -070018DISTRO=${DISTRO:-"ubuntu:eoan"}
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
William A. Kennington III1b873212019-03-21 19:02:42 -070052 stdplus
Patrick Venture22329962018-09-14 10:23:04 -070053 gpioplus
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070054 phosphor-logging
55 phosphor-dbus-interfaces
56 openpower-dbus-interfaces
57)
William A. Kennington III32deed82018-09-17 20:48:23 -070058
59# Generate a list of depcache entries
60# We want to do this in parallel since the package list is growing
61# and the network lookup is low overhead but decently high latency.
62# This doesn't worry about producing a stable DEPCACHE_FILE, that is
63# done by readers who need a stable ordering.
64generate_depcache_entry() {
65 local package="$1"
66
67 local tip
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060068 # Need to continue if branch not found, hence || true at end
Andrew Geisslerffffc1c2019-01-08 14:00:13 -060069 tip=$(git ls-remote --heads "https://github.com/openbmc/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060070 grep "refs/heads/$BRANCH" | awk '{ print $1 }' || true)
71
72 # If specific branch is not found then try master
Patrick Venture530a8022019-02-13 12:16:56 -080073 if [[ ! -n "$tip" ]]; then
Andrew Geisslerffffc1c2019-01-08 14:00:13 -060074 tip=$(git ls-remote --heads "https://github.com/openbmc/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060075 grep "refs/heads/master" | awk '{ print $1 }')
76 fi
William A. Kennington III32deed82018-09-17 20:48:23 -070077
78 # Lock the file to avoid interlaced writes
79 exec 3>> "$DEPCACHE_FILE"
80 flock -x 3
81 echo "$package:$tip" >&3
82 exec 3>&-
83}
William A. Kennington III4815f702018-10-03 19:27:42 -070084for package in "${HEAD_PKGS[@]}"; do
William A. Kennington III32deed82018-09-17 20:48:23 -070085 generate_depcache_entry "$package" &
Andrew Jeffery221eeda2018-03-08 13:32:43 +103086done
William A. Kennington III32deed82018-09-17 20:48:23 -070087wait
Andrew Jeffery221eeda2018-03-08 13:32:43 +103088
William A. Kennington III4815f702018-10-03 19:27:42 -070089# A list of package versions we are building
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070090# Start off by listing the stating versions of third-party sources
91declare -A PKG_REV=(
William A. Kennington IIIacc7fc72019-03-05 19:24:42 -080092 [boost]=1.69.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070093 [cereal]=v1.2.2
William A. Kennington IIIf5bd2362019-01-30 12:57:03 -080094 [CLI11]=v1.7.1
William A. Kennington III6b50d702019-07-09 16:44:05 -070095 [fmt]=5.3.0
William A. Kennington III8ff1e0f2019-03-27 03:19:51 -070096 # Snapshot from 2019-03-10
97 [function2]=e3695b4b4fa3c672e25c6462d7900f8d2417a417
William A. Kennington III3eaf5922018-12-11 18:16:09 -080098 # Snapshot from 2018-12-17
99 [googletest]=9ab640ce5e5120021c5972d7e60f258bfca64d71
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -0700100 [json]=v3.3.0
William A. Kennington III0be795e2019-06-26 12:12:33 -0700101 # Snapshot from 2019-05-24
102 [lcov]=75fbae1cfc5027f818a0bb865bf6f96fab3202da
Patrick Venture19b811b2019-05-01 13:55:41 -0700103 # dev-5.0 2019-05-03
104 [linux-headers]=8bf6567e77f7aa68975b7c9c6d044bba690bf327
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700105 # libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a is required for obmc-ikvm
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -0700106 # Snapshot from 2018-10-08
107 [libvncserver]=7b1ef0ffc4815cab9a96c7278394152bdc89dc4d
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700108 # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
109 [tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
Patrick Venturead4354e2018-10-12 16:59:54 -0700110 [cppcheck]=df32b0fb05f0c951ab0efa691292c7428f3f50a9
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700111)
William A. Kennington III4815f702018-10-03 19:27:42 -0700112
113# Turn the depcache into a dictionary so we can reference the HEAD of each repo
114for line in $(cat "$DEPCACHE_FILE"); do
115 linearr=($(echo "$line" | tr ':' ' '))
116 PKG_REV["${linearr[0]}"]="${linearr[1]}"
117done
118
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700119# Define common flags used for builds
120PREFIX="/usr/local"
121CONFIGURE_FLAGS=(
122 "--prefix=${PREFIX}"
123)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700124CMAKE_FLAGS=(
125 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
126 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700127 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -0700128)
129
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700130# Build the commands needed to compose our final image
131COPY_CMDS=""
132# We must sort the packages, otherwise we might produce an unstable
133# docker file and rebuild the image unnecessarily
134for pkg in $(echo "${!PKG_REV[@]}" | tr ' ' '\n' | LC_COLLATE=C sort -s); do
135 COPY_CMDS+="COPY --from=openbmc-${pkg} ${PREFIX} ${PREFIX}"$'\n'
William A. Kennington III36f26222018-11-01 13:40:18 -0700136 # Workaround for upstream docker bug and multiple COPY cmds
137 # https://github.com/moby/moby/issues/37965
138 COPY_CMDS+="RUN true"$'\n'
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700139done
140
Matthew Barthb4aea672016-11-10 14:59:52 -0600141################################# docker img # #################################
142# Create docker image that can run package unit tests
143if [[ "${DISTRO}" == "ubuntu"* ]]; then
144Dockerfile=$(cat << EOF
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700145FROM ${DOCKER_BASE}${DISTRO} as openbmc-base
Matthew Barthb4aea672016-11-10 14:59:52 -0600146
147ENV DEBIAN_FRONTEND noninteractive
148
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700149# We need the keys to be imported for dbgsym repos
150# New releases have a package, older ones fall back to manual fetching
151# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
152RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
153 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
154
155# Parse the current repo list into a debug repo list
156RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
157
158# Remove non-existent debug repos
159RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
160
161RUN cat /etc/apt/sources.list.d/debug.list
162
Matthew Barthb4aea672016-11-10 14:59:52 -0600163RUN apt-get update && apt-get install -yy \
William A. Kennington III0232a252019-06-26 12:13:47 -0700164 gcc-9 \
165 g++-9 \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700166 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600167 libc6-dev \
168 libtool \
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800169 bison \
170 flex \
Matthew Barthb4aea672016-11-10 14:59:52 -0600171 cmake \
172 python \
173 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -0600174 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -0600175 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -0600176 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930177 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -0600178 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -0700179 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -0500180 python3 \
181 python3-dev\
182 python3-yaml \
183 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930184 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500185 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -0600186 pkg-config \
187 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700188 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600189 libsystemd-dev \
Brad Bishopa1ee2652019-03-29 16:42:06 -0400190 systemd \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700191 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600192 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500193 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700194 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500195 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700196 libpng-dev \
William A. Kennington IIIbaeb4f52018-12-06 14:57:13 -0800197 ninja-build \
Matthew Barthb4aea672016-11-10 14:59:52 -0600198 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700199 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600200 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500201 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800202 iputils-ping \
William A. Kennington IIIf6769412019-06-26 12:14:51 -0700203 clang-8 \
204 clang-format-8 \
205 clang-tidy-8 \
206 clang-tools-8 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530207 iproute2 \
208 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700209 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530210 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700211 libsnmp-dev \
212 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700213 valgrind-dbg \
James Feist878df5c2018-07-26 14:54:28 -0700214 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530215 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700216 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500217 wget \
Patrick Venturedef31a82018-12-10 13:24:46 -0800218 libldap2-dev \
219 libprotobuf-dev \
William A. Kennington III0be795e2019-06-26 12:12:33 -0700220 libperlio-gzip-perl \
221 libjson-perl \
James Feistcf8fddb2019-05-30 15:30:42 -0700222 protobuf-compiler \
223 libgpiod-dev
Matthew Barthb4aea672016-11-10 14:59:52 -0600224
William A. Kennington III0232a252019-06-26 12:13:47 -0700225RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 900 \
226 --slave /usr/bin/g++ g++ /usr/bin/g++-9 \
227 --slave /usr/bin/gcov gcov /usr/bin/gcov-9 \
228 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-9 \
229 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-9
230
Matthew Bartha2366d92017-01-31 09:46:20 -0600231RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600232RUN pip install pycodestyle
William A. Kennington IIIa23d1142019-05-15 23:36:13 -0700233RUN pip3 install meson==0.50.1
Matthew Bartha2366d92017-01-31 09:46:20 -0600234
William A. Kennington III1a651822019-01-16 14:48:52 -0800235FROM openbmc-base as openbmc-lcov
236RUN curl -L https://github.com/linux-test-project/lcov/archive/${PKG_REV['lcov']}.tar.gz | tar -xz && \
237cd lcov-* && \
238make -j$(nproc) && \
239make install
240
William A. Kennington III8ff1e0f2019-03-27 03:19:51 -0700241FROM openbmc-base as openbmc-function2
William A. Kennington IIIf6884642019-03-29 15:19:20 -0700242RUN mkdir ${PREFIX}/include/function2 && \
243curl -L -o ${PREFIX}/include/function2/function2.hpp https://raw.githubusercontent.com/Naios/function2/${PKG_REV['function2']}/include/function2/function2.hpp
William A. Kennington III8ff1e0f2019-03-27 03:19:51 -0700244
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700245FROM openbmc-base as openbmc-googletest
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700246RUN curl -L https://github.com/google/googletest/archive/${PKG_REV['googletest']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700247cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700248mkdir build && \
249cd build && \
William A. Kennington III3eaf5922018-12-11 18:16:09 -0800250cmake ${CMAKE_FLAGS[@]} -DTHREADS_PREFER_PTHREAD_FLAG=ON .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700251make -j$(nproc) && \
252make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600253
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700254FROM openbmc-base as openbmc-cereal
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700255RUN curl -L https://github.com/USCiLab/cereal/archive/${PKG_REV['cereal']}.tar.gz | tar -xz && \
256cp -a cereal-*/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500257
William A. Kennington III1962d572018-09-12 22:38:15 -0700258FROM openbmc-base as openbmc-CLI11
259RUN curl -L https://github.com/CLIUtils/CLI11/archive/${PKG_REV['CLI11']}.tar.gz | tar -xz && \
260cd CLI11-* && \
261mkdir build && \
262cd build && \
Patrick Venture37b27042018-10-15 17:17:36 -0700263cmake ${CMAKE_FLAGS[@]} -DCLI11_TESTING=OFF -DCLI11_EXAMPLES=OFF .. && \
William A. Kennington III1962d572018-09-12 22:38:15 -0700264make -j$(nproc) && \
265make install
266
William A. Kennington III6b50d702019-07-09 16:44:05 -0700267FROM openbmc-base as openbmc-fmt
268RUN curl -L https://github.com/fmtlib/fmt/archive/${PKG_REV['fmt']}.tar.gz | tar -xz && \
269cd fmt-* && \
270mkdir build && \
271cd build && \
272cmake ${CMAKE_FLAGS[@]} -DFMT_DOC=OFF -DFMT_TEST=OFF .. && \
273make -j$(nproc) && \
274make install
275
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700276FROM openbmc-base as openbmc-json
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700277RUN mkdir ${PREFIX}/include/nlohmann/ && \
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700278curl -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 -0800279
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800280FROM openbmc-base as openbmc-linux-headers
281RUN curl -L https://github.com/openbmc/linux/archive/${PKG_REV['linux-headers']}.tar.gz | tar -xz && \
282cd linux-* && \
283make -j$(nproc) defconfig && \
284make INSTALL_HDR_PATH=/usr/local headers_install
285
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700286FROM openbmc-base as openbmc-boost
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700287RUN 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 -0700288cd boost_*/ && \
289./bootstrap.sh --prefix=${PREFIX} --with-libraries=context,coroutine && \
290./b2 && ./b2 install --prefix=${PREFIX}
James Feist878df5c2018-07-26 14:54:28 -0700291
Patrick Venturead4354e2018-10-12 16:59:54 -0700292FROM openbmc-base as openbmc-cppcheck
293RUN curl -L https://github.com/danmar/cppcheck/archive/${PKG_REV['cppcheck']}.tar.gz | tar -xz && \
294cd cppcheck-* && \
295mkdir "${PREFIX}/cppcheck-cfg" && cp cfg/* "${PREFIX}/cppcheck-cfg/" && \
296make -j$(nproc) CFGDIR="${PREFIX}/cppcheck-cfg" CXXFLAGS="-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function" && \
297make PREFIX=${PREFIX} install
298
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700299FROM openbmc-base as openbmc-tinyxml2
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700300RUN curl -L https://github.com/leethomason/tinyxml2/archive/${PKG_REV['tinyxml2']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700301cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700302mkdir build && \
303cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700304cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700305make -j$(nproc) && \
306make install
307
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700308FROM openbmc-base as openbmc-libvncserver
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700309RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700310cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700311mkdir build && \
312cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700313cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700314make -j$(nproc) && \
315make install
316
William A. Kennington III1b873212019-03-21 19:02:42 -0700317FROM openbmc-base as openbmc-stdplus
318RUN curl -L https://github.com/openbmc/stdplus/archive/${PKG_REV['stdplus']}.tar.gz | tar -xz && \
319cd stdplus-* && \
320meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
321ninja -C build && \
322ninja -C build install
323
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700324FROM openbmc-base as openbmc-sdbusplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700325RUN curl -L https://github.com/openbmc/sdbusplus/archive/${PKG_REV['sdbusplus']}.tar.gz | tar -xz && \
326cd sdbusplus-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030327./bootstrap.sh && \
Patrick Venture380907a2018-12-03 13:13:25 -0800328./configure ${CONFIGURE_FLAGS[@]} --disable-tests --enable-transaction && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030329make -j$(nproc) && \
330make install
331
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700332FROM openbmc-base as openbmc-sdeventplus
William A. Kennington III4ca0e7b2019-03-27 03:33:18 -0700333COPY --from=openbmc-function2 ${PREFIX} ${PREFIX}
William A. Kennington IIIa472fda2019-03-21 21:06:38 -0700334COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700335RUN curl -L https://github.com/openbmc/sdeventplus/archive/${PKG_REV['sdeventplus']}.tar.gz | tar -xz && \
336cd sdeventplus-* && \
William A. Kennington III2b639f32019-03-21 19:00:38 -0700337meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
338ninja -C build && \
339ninja -C build install
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700340
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700341FROM openbmc-base as openbmc-gpioplus
William A. Kennington III1aed1252019-01-15 18:18:03 -0800342COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700343RUN curl -L https://github.com/openbmc/gpioplus/archive/${PKG_REV['gpioplus']}.tar.gz | tar -xz && \
344cd gpioplus-* && \
William A. Kennington III83648312019-03-27 19:53:18 -0700345meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
346ninja -C build && \
347ninja -C build install
Patrick Venture22329962018-09-14 10:23:04 -0700348
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700349FROM openbmc-base as openbmc-phosphor-dbus-interfaces
350COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700351RUN curl -L https://github.com/openbmc/phosphor-dbus-interfaces/archive/${PKG_REV['phosphor-dbus-interfaces']}.tar.gz | tar -xz && \
352cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030353./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700354./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030355make -j$(nproc) && \
356make install
357
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700358FROM openbmc-base as openbmc-openpower-dbus-interfaces
359COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700360RUN curl -L https://github.com/openbmc/openpower-dbus-interfaces/archive/${PKG_REV['openpower-dbus-interfaces']}.tar.gz | tar -xz && \
361cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030362./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700363./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030364make -j$(nproc) && \
365make install
366
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700367FROM openbmc-base as openbmc-phosphor-logging
368COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
369COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4f47a5c2019-07-16 14:57:57 -0700370COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700371COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinler1d156512018-10-29 09:56:57 -0500372COPY --from=openbmc-openpower-dbus-interfaces ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700373RUN curl -L https://github.com/openbmc/phosphor-logging/archive/${PKG_REV['phosphor-logging']}.tar.gz | tar -xz && \
374cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030375./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700376./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030377make -j$(nproc) && \
378make install
379
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700380FROM openbmc-base as openbmc-phosphor-objmgr
381COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
382COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
383COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
384COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700385RUN curl -L https://github.com/openbmc/phosphor-objmgr/archive/${PKG_REV['phosphor-objmgr']}.tar.gz | tar -xz && \
386cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030387./bootstrap.sh && \
Matt Spinlerf3e08ee2019-04-10 11:13:33 -0500388./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030389make -j$(nproc) && \
390make install
391
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700392
393# Build the final output image
394FROM openbmc-base
395${COPY_CMDS}
396
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700397# Some of our infrastructure still relies on the presence of this file
398# even though it is no longer needed to rebuild the docker environment
399# NOTE: The file is sorted to ensure the ordering is stable.
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800400RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /tmp/depcache
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700401
402# Final configuration for the workspace
403RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
404RUN mkdir -p $(dirname ${HOME})
405RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
William A. Kennington III3bba8fb2018-12-13 15:07:49 -0800406RUN sed -i '1iDefaults umask=000' /etc/sudoers
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800407RUN echo "${USER} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700408
Matthew Barthb4aea672016-11-10 14:59:52 -0600409RUN /bin/bash
410EOF
411)
412fi
413################################# docker img # #################################
414
415# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700416docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"