blob: 497f5404d73a4f2151fcce3d3a5b176031d43fcc [file] [log] [blame]
Andrew Geisslerb3175012019-09-01 20:51:14 -05001#!/usr/bin/env bash
Matthew Barthb4aea672016-11-10 14:59:52 -06002#
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
Andrew Geisslerb3175012019-09-01 20:51:14 -050015set -xeuo pipefail
Matthew Barthb4aea672016-11-10 14:59:52 -060016
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=(
Andrew Jefferyb4296f52019-08-07 11:03:09 +093049 openbmc/phosphor-objmgr
50 openbmc/sdbusplus
51 openbmc/sdeventplus
52 openbmc/stdplus
53 openbmc/gpioplus
54 openbmc/phosphor-logging
55 openbmc/phosphor-dbus-interfaces
56 openbmc/openpower-dbus-interfaces
Andrew Jeffery8a273be2019-08-07 11:09:46 +093057 open-power/pdbg
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070058)
William A. Kennington III32deed82018-09-17 20:48:23 -070059
60# Generate a list of depcache entries
61# We want to do this in parallel since the package list is growing
62# and the network lookup is low overhead but decently high latency.
63# This doesn't worry about producing a stable DEPCACHE_FILE, that is
64# done by readers who need a stable ordering.
65generate_depcache_entry() {
66 local package="$1"
67
68 local tip
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060069 # Need to continue if branch not found, hence || true at end
Andrew Jefferyb4296f52019-08-07 11:03:09 +093070 tip=$(git ls-remote --heads "https://github.com/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060071 grep "refs/heads/$BRANCH" | awk '{ print $1 }' || true)
72
73 # If specific branch is not found then try master
Patrick Venture530a8022019-02-13 12:16:56 -080074 if [[ ! -n "$tip" ]]; then
Andrew Jefferyb4296f52019-08-07 11:03:09 +093075 tip=$(git ls-remote --heads "https://github.com/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060076 grep "refs/heads/master" | awk '{ print $1 }')
77 fi
William A. Kennington III32deed82018-09-17 20:48:23 -070078
79 # Lock the file to avoid interlaced writes
80 exec 3>> "$DEPCACHE_FILE"
Andrew Geisslerdda45132019-09-01 21:03:04 -050081 flock 3
William A. Kennington III32deed82018-09-17 20:48:23 -070082 echo "$package:$tip" >&3
83 exec 3>&-
84}
William A. Kennington III4815f702018-10-03 19:27:42 -070085for package in "${HEAD_PKGS[@]}"; do
William A. Kennington III32deed82018-09-17 20:48:23 -070086 generate_depcache_entry "$package" &
Andrew Jeffery221eeda2018-03-08 13:32:43 +103087done
William A. Kennington III32deed82018-09-17 20:48:23 -070088wait
Andrew Jeffery221eeda2018-03-08 13:32:43 +103089
William A. Kennington III4815f702018-10-03 19:27:42 -070090# A list of package versions we are building
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070091# Start off by listing the stating versions of third-party sources
92declare -A PKG_REV=(
William A. Kennington IIIacc7fc72019-03-05 19:24:42 -080093 [boost]=1.69.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070094 [cereal]=v1.2.2
William A. Kennington III1e4d5332019-10-18 12:24:18 -070095 [catch2]=v2.10.0
Lei YU4b920442019-10-22 16:57:09 +080096 [CLI11]=v1.8.0
William A. Kennington III6b50d702019-07-09 16:44:05 -070097 [fmt]=5.3.0
William A. Kennington III8ff1e0f2019-03-27 03:19:51 -070098 # Snapshot from 2019-03-10
99 [function2]=e3695b4b4fa3c672e25c6462d7900f8d2417a417
William A. Kennington III3eaf5922018-12-11 18:16:09 -0800100 # Snapshot from 2018-12-17
101 [googletest]=9ab640ce5e5120021c5972d7e60f258bfca64d71
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -0700102 [json]=v3.3.0
William A. Kennington III0be795e2019-06-26 12:12:33 -0700103 # Snapshot from 2019-05-24
104 [lcov]=75fbae1cfc5027f818a0bb865bf6f96fab3202da
Patrick Venture19b811b2019-05-01 13:55:41 -0700105 # dev-5.0 2019-05-03
106 [linux-headers]=8bf6567e77f7aa68975b7c9c6d044bba690bf327
Jae Hyun Yood34cf322019-09-09 11:50:18 -0700107 # Snapshot from 2019-09-03
108 [libvncserver]=1354f7f1bb6962dab209eddb9d6aac1f03408110
William A. Kennington IIIe1d68692019-10-18 12:26:12 -0700109 [span-lite]=v0.6.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700110 # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
111 [tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
112)
William A. Kennington III4815f702018-10-03 19:27:42 -0700113
114# Turn the depcache into a dictionary so we can reference the HEAD of each repo
115for line in $(cat "$DEPCACHE_FILE"); do
116 linearr=($(echo "$line" | tr ':' ' '))
117 PKG_REV["${linearr[0]}"]="${linearr[1]}"
118done
119
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700120# Define common flags used for builds
121PREFIX="/usr/local"
122CONFIGURE_FLAGS=(
123 "--prefix=${PREFIX}"
124)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700125CMAKE_FLAGS=(
126 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
127 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700128 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -0700129)
130
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930131stagename()
132{
133 local cooked="$1"
134
135 if ! echo "$cooked" | grep -q '/'
136 then
137 cooked=openbmc-"$cooked"
138 fi
139 echo "$cooked" | tr '/' '-'
140}
141
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700142# Build the commands needed to compose our final image
143COPY_CMDS=""
144# We must sort the packages, otherwise we might produce an unstable
145# docker file and rebuild the image unnecessarily
146for pkg in $(echo "${!PKG_REV[@]}" | tr ' ' '\n' | LC_COLLATE=C sort -s); do
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930147 COPY_CMDS+="COPY --from=$(stagename ${pkg}) ${PREFIX} ${PREFIX}"$'\n'
William A. Kennington III36f26222018-11-01 13:40:18 -0700148 # Workaround for upstream docker bug and multiple COPY cmds
149 # https://github.com/moby/moby/issues/37965
150 COPY_CMDS+="RUN true"$'\n'
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700151done
152
Matthew Barthb4aea672016-11-10 14:59:52 -0600153################################# docker img # #################################
154# Create docker image that can run package unit tests
155if [[ "${DISTRO}" == "ubuntu"* ]]; then
156Dockerfile=$(cat << EOF
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700157FROM ${DOCKER_BASE}${DISTRO} as openbmc-base
Matthew Barthb4aea672016-11-10 14:59:52 -0600158
159ENV DEBIAN_FRONTEND noninteractive
160
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700161# We need the keys to be imported for dbgsym repos
162# New releases have a package, older ones fall back to manual fetching
163# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
164RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
165 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
166
167# Parse the current repo list into a debug repo list
168RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
169
170# Remove non-existent debug repos
171RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
172
173RUN cat /etc/apt/sources.list.d/debug.list
174
Matthew Barthb4aea672016-11-10 14:59:52 -0600175RUN apt-get update && apt-get install -yy \
William A. Kennington III0232a252019-06-26 12:13:47 -0700176 gcc-9 \
177 g++-9 \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700178 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600179 libc6-dev \
180 libtool \
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800181 bison \
182 flex \
Matthew Barthb4aea672016-11-10 14:59:52 -0600183 cmake \
184 python \
185 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -0600186 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -0600187 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -0600188 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930189 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -0600190 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -0700191 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -0500192 python3 \
193 python3-dev\
194 python3-yaml \
195 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930196 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500197 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -0600198 pkg-config \
199 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700200 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600201 libsystemd-dev \
Brad Bishopa1ee2652019-03-29 16:42:06 -0400202 systemd \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700203 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600204 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500205 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700206 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500207 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700208 libpng-dev \
William A. Kennington IIIbaeb4f52018-12-06 14:57:13 -0800209 ninja-build \
Matthew Barthb4aea672016-11-10 14:59:52 -0600210 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700211 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600212 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500213 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800214 iputils-ping \
William A. Kennington IIIf6769412019-06-26 12:14:51 -0700215 clang-8 \
216 clang-format-8 \
217 clang-tidy-8 \
218 clang-tools-8 \
Gunnar Mills6b25a032019-07-11 12:16:35 -0500219 npm \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530220 iproute2 \
221 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700222 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530223 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700224 libsnmp-dev \
225 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700226 valgrind-dbg \
James Feist878df5c2018-07-26 14:54:28 -0700227 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530228 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700229 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500230 wget \
Patrick Venturedef31a82018-12-10 13:24:46 -0800231 libldap2-dev \
232 libprotobuf-dev \
William A. Kennington III0be795e2019-06-26 12:12:33 -0700233 libperlio-gzip-perl \
234 libjson-perl \
James Feistcf8fddb2019-05-30 15:30:42 -0700235 protobuf-compiler \
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930236 libgpiod-dev \
Andrew Geissler938d21e2019-09-01 21:09:33 -0500237 device-tree-compiler \
238 cppcheck
Matthew Barthb4aea672016-11-10 14:59:52 -0600239
William A. Kennington III0232a252019-06-26 12:13:47 -0700240RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 900 \
241 --slave /usr/bin/g++ g++ /usr/bin/g++-9 \
242 --slave /usr/bin/gcov gcov /usr/bin/gcov-9 \
243 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-9 \
244 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-9
245
Matthew Bartha2366d92017-01-31 09:46:20 -0600246RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600247RUN pip install pycodestyle
William A. Kennington III3cebc7a2019-10-18 15:55:44 -0700248RUN pip3 install meson==0.52.0
Matthew Bartha2366d92017-01-31 09:46:20 -0600249
William A. Kennington III1a651822019-01-16 14:48:52 -0800250FROM openbmc-base as openbmc-lcov
251RUN curl -L https://github.com/linux-test-project/lcov/archive/${PKG_REV['lcov']}.tar.gz | tar -xz && \
252cd lcov-* && \
253make -j$(nproc) && \
254make install
255
William A. Kennington III8ff1e0f2019-03-27 03:19:51 -0700256FROM openbmc-base as openbmc-function2
William A. Kennington IIIf6884642019-03-29 15:19:20 -0700257RUN mkdir ${PREFIX}/include/function2 && \
258curl -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 -0700259
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700260FROM openbmc-base as openbmc-googletest
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700261RUN curl -L https://github.com/google/googletest/archive/${PKG_REV['googletest']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700262cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700263mkdir build && \
264cd build && \
William A. Kennington III3eaf5922018-12-11 18:16:09 -0800265cmake ${CMAKE_FLAGS[@]} -DTHREADS_PREFER_PTHREAD_FLAG=ON .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700266make -j$(nproc) && \
267make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600268
William A. Kennington III1e4d5332019-10-18 12:24:18 -0700269FROM openbmc-base as openbmc-catch2
270RUN curl -L https://github.com/catchorg/Catch2/archive/${PKG_REV['catch2']}.tar.gz | tar -xz && \
271cd Catch2-* && \
272mkdir build && \
273cd build && \
274cmake ${CMAKE_FLAGS[@]} -DCATCH_BUILD_TESTING=OFF -DCATCH_INSTALL_DOCS=OFF .. && \
275make -j$(nproc) && \
276make install
277
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700278FROM openbmc-base as openbmc-cereal
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700279RUN curl -L https://github.com/USCiLab/cereal/archive/${PKG_REV['cereal']}.tar.gz | tar -xz && \
280cp -a cereal-*/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500281
William A. Kennington III1962d572018-09-12 22:38:15 -0700282FROM openbmc-base as openbmc-CLI11
283RUN curl -L https://github.com/CLIUtils/CLI11/archive/${PKG_REV['CLI11']}.tar.gz | tar -xz && \
284cd CLI11-* && \
285mkdir build && \
286cd build && \
Patrick Venture37b27042018-10-15 17:17:36 -0700287cmake ${CMAKE_FLAGS[@]} -DCLI11_TESTING=OFF -DCLI11_EXAMPLES=OFF .. && \
William A. Kennington III1962d572018-09-12 22:38:15 -0700288make -j$(nproc) && \
289make install
290
William A. Kennington III6b50d702019-07-09 16:44:05 -0700291FROM openbmc-base as openbmc-fmt
292RUN curl -L https://github.com/fmtlib/fmt/archive/${PKG_REV['fmt']}.tar.gz | tar -xz && \
293cd fmt-* && \
294mkdir build && \
295cd build && \
296cmake ${CMAKE_FLAGS[@]} -DFMT_DOC=OFF -DFMT_TEST=OFF .. && \
297make -j$(nproc) && \
298make install
299
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700300FROM openbmc-base as openbmc-json
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700301RUN mkdir ${PREFIX}/include/nlohmann/ && \
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700302curl -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 -0800303
William A. Kennington IIIe1d68692019-10-18 12:26:12 -0700304FROM openbmc-base as openbmc-span-lite
305RUN curl -L https://github.com/martinmoene/span-lite/archive/${PKG_REV['span-lite']}.tar.gz | tar -xz && \
306cd span-lite-* && \
307mkdir build && \
308cd build && \
309cmake ${CMAKE_FLAGS[@]} -DSPAN_LITE_OPT_BUILD_TESTS=OFF .. && \
310make -j$(nproc) && \
311make install
312
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800313FROM openbmc-base as openbmc-linux-headers
314RUN curl -L https://github.com/openbmc/linux/archive/${PKG_REV['linux-headers']}.tar.gz | tar -xz && \
315cd linux-* && \
316make -j$(nproc) defconfig && \
317make INSTALL_HDR_PATH=/usr/local headers_install
318
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700319FROM openbmc-base as openbmc-boost
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700320RUN 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 -0700321cd boost_*/ && \
322./bootstrap.sh --prefix=${PREFIX} --with-libraries=context,coroutine && \
323./b2 && ./b2 install --prefix=${PREFIX}
James Feist878df5c2018-07-26 14:54:28 -0700324
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700325FROM openbmc-base as openbmc-tinyxml2
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700326RUN curl -L https://github.com/leethomason/tinyxml2/archive/${PKG_REV['tinyxml2']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700327cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700328mkdir build && \
329cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700330cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700331make -j$(nproc) && \
332make install
333
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700334FROM openbmc-base as openbmc-libvncserver
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700335RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700336cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700337mkdir build && \
338cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700339cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700340make -j$(nproc) && \
341make install
342
William A. Kennington III1b873212019-03-21 19:02:42 -0700343FROM openbmc-base as openbmc-stdplus
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930344RUN curl -L https://github.com/openbmc/stdplus/archive/${PKG_REV['openbmc/stdplus']}.tar.gz | tar -xz && \
William A. Kennington III1b873212019-03-21 19:02:42 -0700345cd stdplus-* && \
346meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
347ninja -C build && \
348ninja -C build install
349
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700350FROM openbmc-base as openbmc-sdbusplus
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930351RUN curl -L https://github.com/openbmc/sdbusplus/archive/${PKG_REV['openbmc/sdbusplus']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700352cd sdbusplus-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030353./bootstrap.sh && \
Patrick Venture380907a2018-12-03 13:13:25 -0800354./configure ${CONFIGURE_FLAGS[@]} --disable-tests --enable-transaction && \
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-sdeventplus
William A. Kennington III4ca0e7b2019-03-27 03:33:18 -0700359COPY --from=openbmc-function2 ${PREFIX} ${PREFIX}
William A. Kennington IIIa472fda2019-03-21 21:06:38 -0700360COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930361RUN curl -L https://github.com/openbmc/sdeventplus/archive/${PKG_REV['openbmc/sdeventplus']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700362cd sdeventplus-* && \
William A. Kennington III2b639f32019-03-21 19:00:38 -0700363meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
364ninja -C build && \
365ninja -C build install
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700366
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700367FROM openbmc-base as openbmc-gpioplus
William A. Kennington III1aed1252019-01-15 18:18:03 -0800368COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930369RUN curl -L https://github.com/openbmc/gpioplus/archive/${PKG_REV['openbmc/gpioplus']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700370cd gpioplus-* && \
William A. Kennington III83648312019-03-27 19:53:18 -0700371meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
372ninja -C build && \
373ninja -C build install
Patrick Venture22329962018-09-14 10:23:04 -0700374
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700375FROM openbmc-base as openbmc-phosphor-dbus-interfaces
376COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930377RUN curl -L https://github.com/openbmc/phosphor-dbus-interfaces/archive/${PKG_REV['openbmc/phosphor-dbus-interfaces']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700378cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030379./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700380./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030381make -j$(nproc) && \
382make install
383
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700384FROM openbmc-base as openbmc-openpower-dbus-interfaces
385COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
Andrew Geisslerf876a3c2019-07-23 12:41:51 -0500386COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930387RUN curl -L https://github.com/openbmc/openpower-dbus-interfaces/archive/${PKG_REV['openbmc/openpower-dbus-interfaces']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700388cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030389./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700390./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030391make -j$(nproc) && \
392make install
393
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700394FROM openbmc-base as openbmc-phosphor-logging
395COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
396COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4f47a5c2019-07-16 14:57:57 -0700397COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700398COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinler1d156512018-10-29 09:56:57 -0500399COPY --from=openbmc-openpower-dbus-interfaces ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930400RUN curl -L https://github.com/openbmc/phosphor-logging/archive/${PKG_REV['openbmc/phosphor-logging']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700401cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030402./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700403./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030404make -j$(nproc) && \
405make install
406
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700407FROM openbmc-base as openbmc-phosphor-objmgr
408COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
409COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
410COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
411COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930412RUN curl -L https://github.com/openbmc/phosphor-objmgr/archive/${PKG_REV['openbmc/phosphor-objmgr']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700413cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030414./bootstrap.sh && \
Matt Spinlerf3e08ee2019-04-10 11:13:33 -0500415./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030416make -j$(nproc) && \
417make install
418
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930419FROM openbmc-base as open-power-pdbg
420RUN curl -L https://github.com/open-power/pdbg/archive/${PKG_REV['open-power/pdbg']}.tar.gz | tar -xz && \
421cd pdbg-* && \
422./bootstrap.sh && \
423./configure ${CONFIGURE_FLAGS[@]} && \
424make -j$(nproc) && \
425make install
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700426
427# Build the final output image
428FROM openbmc-base
429${COPY_CMDS}
430
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700431# Some of our infrastructure still relies on the presence of this file
432# even though it is no longer needed to rebuild the docker environment
433# NOTE: The file is sorted to ensure the ordering is stable.
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800434RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /tmp/depcache
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700435
436# Final configuration for the workspace
437RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington IIIc1e93cb2019-07-16 15:40:25 -0700438RUN mkdir -p "$(dirname "${HOME}")"
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700439RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
William A. Kennington III3bba8fb2018-12-13 15:07:49 -0800440RUN sed -i '1iDefaults umask=000' /etc/sudoers
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800441RUN echo "${USER} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700442
Matthew Barthb4aea672016-11-10 14:59:52 -0600443RUN /bin/bash
444EOF
445)
446fi
447################################# docker img # #################################
448
449# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700450docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"