blob: 380da059743848d919b90b61f16dda35e2251e84 [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"}
Andrew Geissler595739b2020-05-19 14:21:49 -050018DISTRO=${DISTRO:-"ubuntu:focal"}
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
Matt Spinlerbd1ff812019-11-14 10:00:04 -060058 openbmc/pldm
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070059)
William A. Kennington III32deed82018-09-17 20:48:23 -070060
61# Generate a list of depcache entries
62# We want to do this in parallel since the package list is growing
63# and the network lookup is low overhead but decently high latency.
64# This doesn't worry about producing a stable DEPCACHE_FILE, that is
65# done by readers who need a stable ordering.
66generate_depcache_entry() {
67 local package="$1"
68
69 local tip
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060070 # Need to continue if branch not found, hence || true at end
Andrew Jefferyb4296f52019-08-07 11:03:09 +093071 tip=$(git ls-remote --heads "https://github.com/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060072 grep "refs/heads/$BRANCH" | awk '{ print $1 }' || true)
73
74 # If specific branch is not found then try master
Patrick Venture530a8022019-02-13 12:16:56 -080075 if [[ ! -n "$tip" ]]; then
Andrew Jefferyb4296f52019-08-07 11:03:09 +093076 tip=$(git ls-remote --heads "https://github.com/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060077 grep "refs/heads/master" | awk '{ print $1 }')
78 fi
William A. Kennington III32deed82018-09-17 20:48:23 -070079
80 # Lock the file to avoid interlaced writes
81 exec 3>> "$DEPCACHE_FILE"
Andrew Geisslerdda45132019-09-01 21:03:04 -050082 flock 3
William A. Kennington III32deed82018-09-17 20:48:23 -070083 echo "$package:$tip" >&3
84 exec 3>&-
85}
William A. Kennington III4815f702018-10-03 19:27:42 -070086for package in "${HEAD_PKGS[@]}"; do
William A. Kennington III32deed82018-09-17 20:48:23 -070087 generate_depcache_entry "$package" &
Andrew Jeffery221eeda2018-03-08 13:32:43 +103088done
William A. Kennington III32deed82018-09-17 20:48:23 -070089wait
Andrew Jeffery221eeda2018-03-08 13:32:43 +103090
William A. Kennington III4815f702018-10-03 19:27:42 -070091# A list of package versions we are building
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070092# Start off by listing the stating versions of third-party sources
93declare -A PKG_REV=(
Lei YU4041b892019-11-20 11:04:24 +080094 [boost]=1.71.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070095 [cereal]=v1.2.2
William A. Kennington III84a19a62020-02-25 14:06:57 -080096 [catch2]=v2.11.1
William A. Kennington III78655e52020-02-25 14:07:30 -080097 [CLI11]=v1.9.0
William A. Kennington IIIbd6850a2020-02-25 14:08:02 -080098 [fmt]=6.1.2
William A. Kennington III6135ba32020-02-25 14:10:11 -080099 # Snapshot from 2020-01-03
100 [function2]=3a0746bf5f601dfed05330aefcb6854354fce07d
William A. Kennington III171151f2020-02-25 14:10:27 -0800101 # Snapshot from 2020-02-13
102 [googletest]=23b2a3b1cf803999fb38175f6e9e038a4495c8a5
Andrew Geissler1976d392020-05-20 13:09:33 -0500103 # TODO - Move back to released json once gcc10 fix is available
104 # [json]=v3.7.3
105 # Snapshot from 2020-05-19
106 [json]=5cfa8a586ee1a656190491c1de20a82fb40fab5d
William A. Kennington III0be795e2019-06-26 12:12:33 -0700107 # Snapshot from 2019-05-24
108 [lcov]=75fbae1cfc5027f818a0bb865bf6f96fab3202da
Patrick Venture19b811b2019-05-01 13:55:41 -0700109 # dev-5.0 2019-05-03
110 [linux-headers]=8bf6567e77f7aa68975b7c9c6d044bba690bf327
Jae Hyun Yood34cf322019-09-09 11:50:18 -0700111 # Snapshot from 2019-09-03
112 [libvncserver]=1354f7f1bb6962dab209eddb9d6aac1f03408110
William A. Kennington III9c900d02020-03-13 01:33:02 -0700113 [span-lite]=v0.7.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700114 # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
115 [tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
Brad Bishop0204bec2019-11-07 16:13:54 -0500116 # version from meta-openembedded/meta-oe/recipes-devtools/valijson/valijson_git.bb
117 [valijson]=c2f22fddf599d04dc33fcd7ed257c698a05345d9
Matt Spinlerfd51e812020-01-14 13:31:22 -0600118 # version from meta-openembedded/meta-oe/recipes-devtools/nlohmann-fifo/nlohmann-fifo_git.bb
119 [fifo_map]=0dfbf5dacbb15a32c43f912a7e66a54aae39d0f9
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700120)
William A. Kennington III4815f702018-10-03 19:27:42 -0700121
122# Turn the depcache into a dictionary so we can reference the HEAD of each repo
123for line in $(cat "$DEPCACHE_FILE"); do
124 linearr=($(echo "$line" | tr ':' ' '))
125 PKG_REV["${linearr[0]}"]="${linearr[1]}"
126done
127
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700128# Define common flags used for builds
129PREFIX="/usr/local"
130CONFIGURE_FLAGS=(
131 "--prefix=${PREFIX}"
132)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700133CMAKE_FLAGS=(
134 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
135 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700136 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -0700137)
138
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930139stagename()
140{
141 local cooked="$1"
142
143 if ! echo "$cooked" | grep -q '/'
144 then
145 cooked=openbmc-"$cooked"
146 fi
147 echo "$cooked" | tr '/' '-'
148}
149
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700150# Build the commands needed to compose our final image
151COPY_CMDS=""
152# We must sort the packages, otherwise we might produce an unstable
153# docker file and rebuild the image unnecessarily
154for pkg in $(echo "${!PKG_REV[@]}" | tr ' ' '\n' | LC_COLLATE=C sort -s); do
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930155 COPY_CMDS+="COPY --from=$(stagename ${pkg}) ${PREFIX} ${PREFIX}"$'\n'
William A. Kennington III36f26222018-11-01 13:40:18 -0700156 # Workaround for upstream docker bug and multiple COPY cmds
157 # https://github.com/moby/moby/issues/37965
158 COPY_CMDS+="RUN true"$'\n'
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700159done
160
Matthew Barthb4aea672016-11-10 14:59:52 -0600161################################# docker img # #################################
162# Create docker image that can run package unit tests
163if [[ "${DISTRO}" == "ubuntu"* ]]; then
164Dockerfile=$(cat << EOF
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700165FROM ${DOCKER_BASE}${DISTRO} as openbmc-base
Matthew Barthb4aea672016-11-10 14:59:52 -0600166
167ENV DEBIAN_FRONTEND noninteractive
168
Andrew Geissler595739b2020-05-19 14:21:49 -0500169ENV PYTHONPATH "/usr/local/lib/python3.8/site-packages/"
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500170
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700171# We need the keys to be imported for dbgsym repos
172# New releases have a package, older ones fall back to manual fetching
173# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
174RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
175 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
176
177# Parse the current repo list into a debug repo list
178RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
179
180# Remove non-existent debug repos
181RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
182
183RUN cat /etc/apt/sources.list.d/debug.list
184
Matthew Barthb4aea672016-11-10 14:59:52 -0600185RUN apt-get update && apt-get install -yy \
Andrew Geissler595739b2020-05-19 14:21:49 -0500186 gcc-10 \
187 g++-10 \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700188 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600189 libc6-dev \
190 libtool \
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800191 bison \
192 flex \
Matthew Barthb4aea672016-11-10 14:59:52 -0600193 cmake \
Saqib Khan362ca852017-03-21 10:48:46 -0500194 python3 \
195 python3-dev\
196 python3-yaml \
197 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930198 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500199 python3-setuptools \
Andrew Jefferybda43ce2020-03-13 12:19:49 +1030200 python3-git \
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500201 python3-socks \
Matthew Barthb4aea672016-11-10 14:59:52 -0600202 pkg-config \
203 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700204 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600205 libsystemd-dev \
Brad Bishopa1ee2652019-03-29 16:42:06 -0400206 systemd \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700207 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600208 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500209 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700210 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500211 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700212 libpng-dev \
William A. Kennington IIIbaeb4f52018-12-06 14:57:13 -0800213 ninja-build \
Matthew Barthb4aea672016-11-10 14:59:52 -0600214 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700215 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600216 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500217 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800218 iputils-ping \
William A. Kennington IIIf6769412019-06-26 12:14:51 -0700219 clang-8 \
220 clang-format-8 \
221 clang-tidy-8 \
222 clang-tools-8 \
Gunnar Mills6b25a032019-07-11 12:16:35 -0500223 npm \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530224 iproute2 \
225 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700226 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530227 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700228 libsnmp-dev \
229 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700230 valgrind-dbg \
James Feist878df5c2018-07-26 14:54:28 -0700231 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530232 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700233 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500234 wget \
Patrick Venturedef31a82018-12-10 13:24:46 -0800235 libldap2-dev \
236 libprotobuf-dev \
William A. Kennington III0be795e2019-06-26 12:12:33 -0700237 libperlio-gzip-perl \
238 libjson-perl \
James Feistcf8fddb2019-05-30 15:30:42 -0700239 protobuf-compiler \
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930240 libgpiod-dev \
Andrew Geissler938d21e2019-09-01 21:09:33 -0500241 device-tree-compiler \
242 cppcheck
Matthew Barthb4aea672016-11-10 14:59:52 -0600243
Andrew Geissler595739b2020-05-19 14:21:49 -0500244RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 1000 \
245 --slave /usr/bin/g++ g++ /usr/bin/g++-10 \
246 --slave /usr/bin/gcov gcov /usr/bin/gcov-10 \
247 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-10 \
248 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-10
William A. Kennington III0232a252019-06-26 12:13:47 -0700249
Patrick Williamsf7c2c5f2020-02-06 10:51:04 -0600250RUN pip3 install inflection
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500251RUN pip3 install pycodestyle
Shawn McCarneya49dbde2020-03-05 08:52:05 -0600252RUN pip3 install jsonschema
William A. Kennington IIIe39ad882020-02-25 13:53:33 -0800253RUN pip3 install meson==0.53.2
Matthew Bartha2366d92017-01-31 09:46:20 -0600254
Andrew Geissler089852c2020-04-13 13:21:54 -0500255# run-clang-tidy-8.py has not moved to python3 yet however it
256# supports it for our needs to just switch it over
257RUN sed -i '1s/python$/python3/' /usr/bin/run-clang-tidy-8.py
258
William A. Kennington III1a651822019-01-16 14:48:52 -0800259FROM openbmc-base as openbmc-lcov
260RUN curl -L https://github.com/linux-test-project/lcov/archive/${PKG_REV['lcov']}.tar.gz | tar -xz && \
261cd lcov-* && \
262make -j$(nproc) && \
263make install
264
William A. Kennington III8ff1e0f2019-03-27 03:19:51 -0700265FROM openbmc-base as openbmc-function2
William A. Kennington IIIf6884642019-03-29 15:19:20 -0700266RUN mkdir ${PREFIX}/include/function2 && \
267curl -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 -0700268
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700269FROM openbmc-base as openbmc-googletest
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700270RUN curl -L https://github.com/google/googletest/archive/${PKG_REV['googletest']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700271cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700272mkdir build && \
273cd build && \
William A. Kennington III3eaf5922018-12-11 18:16:09 -0800274cmake ${CMAKE_FLAGS[@]} -DTHREADS_PREFER_PTHREAD_FLAG=ON .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700275make -j$(nproc) && \
276make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600277
William A. Kennington III1e4d5332019-10-18 12:24:18 -0700278FROM openbmc-base as openbmc-catch2
279RUN curl -L https://github.com/catchorg/Catch2/archive/${PKG_REV['catch2']}.tar.gz | tar -xz && \
280cd Catch2-* && \
281mkdir build && \
282cd build && \
William A. Kennington III84a19a62020-02-25 14:06:57 -0800283cmake ${CMAKE_FLAGS[@]} -DBUILD_TESTING=OFF -DCATCH_INSTALL_DOCS=OFF .. && \
William A. Kennington III1e4d5332019-10-18 12:24:18 -0700284make -j$(nproc) && \
285make install
286
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700287FROM openbmc-base as openbmc-cereal
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700288RUN curl -L https://github.com/USCiLab/cereal/archive/${PKG_REV['cereal']}.tar.gz | tar -xz && \
289cp -a cereal-*/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500290
William A. Kennington III1962d572018-09-12 22:38:15 -0700291FROM openbmc-base as openbmc-CLI11
292RUN curl -L https://github.com/CLIUtils/CLI11/archive/${PKG_REV['CLI11']}.tar.gz | tar -xz && \
293cd CLI11-* && \
294mkdir build && \
295cd build && \
William A. Kennington III78655e52020-02-25 14:07:30 -0800296cmake ${CMAKE_FLAGS[@]} -DCLI11_BUILD_DOCS=OFF -DBUILD_TESTING=OFF -DCLI11_BUILD_EXAMPLES=OFF .. && \
William A. Kennington III1962d572018-09-12 22:38:15 -0700297make -j$(nproc) && \
298make install
299
William A. Kennington III6b50d702019-07-09 16:44:05 -0700300FROM openbmc-base as openbmc-fmt
301RUN curl -L https://github.com/fmtlib/fmt/archive/${PKG_REV['fmt']}.tar.gz | tar -xz && \
302cd fmt-* && \
303mkdir build && \
304cd build && \
305cmake ${CMAKE_FLAGS[@]} -DFMT_DOC=OFF -DFMT_TEST=OFF .. && \
306make -j$(nproc) && \
307make install
308
Andrew Geissler1976d392020-05-20 13:09:33 -0500309# nlohmann json provides all of its function in a single header file
310# TODO - Go back to using a release once gcc 10 fixes are in
311# curl -L -o ${PREFIX}/include/nlohmann/json.hpp https://github.com/nlohmann/json/releases/download/${PKG_REV['json']}/json.hpp
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700312FROM openbmc-base as openbmc-json
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700313RUN mkdir ${PREFIX}/include/nlohmann/ && \
Andrew Geissler1976d392020-05-20 13:09:33 -0500314curl -L -o ${PREFIX}/include/nlohmann/json.hpp https://raw.githubusercontent.com/nlohmann/json/${PKG_REV['json']}/single_include/nlohmann/json.hpp && \
Brad Bishop23c81f42019-11-07 14:41:17 -0500315ln -s nlohmann/json.hpp ${PREFIX}/include/json.hpp
David Cobbleye99c07a2017-12-22 11:39:01 -0800316
Matt Spinlerfd51e812020-01-14 13:31:22 -0600317FROM openbmc-base as openbmc-fifo_map
318RUN curl -L https://github.com/nlohmann/fifo_map/archive/${PKG_REV['fifo_map']}.tar.gz | tar -xz && \
319cd fifo_map-*/src && cp fifo_map.hpp ${PREFIX}/include/
320
William A. Kennington IIIe1d68692019-10-18 12:26:12 -0700321FROM openbmc-base as openbmc-span-lite
322RUN curl -L https://github.com/martinmoene/span-lite/archive/${PKG_REV['span-lite']}.tar.gz | tar -xz && \
323cd span-lite-* && \
324mkdir build && \
325cd build && \
326cmake ${CMAKE_FLAGS[@]} -DSPAN_LITE_OPT_BUILD_TESTS=OFF .. && \
327make -j$(nproc) && \
328make install
329
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800330FROM openbmc-base as openbmc-linux-headers
331RUN curl -L https://github.com/openbmc/linux/archive/${PKG_REV['linux-headers']}.tar.gz | tar -xz && \
332cd linux-* && \
333make -j$(nproc) defconfig && \
334make INSTALL_HDR_PATH=/usr/local headers_install
335
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700336FROM openbmc-base as openbmc-boost
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700337RUN 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 -0700338cd boost_*/ && \
339./bootstrap.sh --prefix=${PREFIX} --with-libraries=context,coroutine && \
340./b2 && ./b2 install --prefix=${PREFIX}
James Feist878df5c2018-07-26 14:54:28 -0700341
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700342FROM openbmc-base as openbmc-tinyxml2
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700343RUN curl -L https://github.com/leethomason/tinyxml2/archive/${PKG_REV['tinyxml2']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700344cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700345mkdir build && \
346cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700347cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700348make -j$(nproc) && \
349make install
350
Brad Bishop0204bec2019-11-07 16:13:54 -0500351FROM openbmc-base as openbmc-valijson
352RUN curl -L https://github.com/tristanpenman/valijson/archive/${PKG_REV['valijson']}.tar.gz | tar -xz && \
353cd valijson-* && \
354mkdir build && \
355cd build && \
356cmake ${CMAKE_FLAGS[@]} -DINSTALL_HEADERS=1 -DBUILD_TESTS=0 .. && \
357make -j$(nproc) && \
358make install
359
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700360FROM openbmc-base as openbmc-libvncserver
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700361RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700362cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700363mkdir build && \
364cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700365cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700366make -j$(nproc) && \
367make install
368
William A. Kennington III1b873212019-03-21 19:02:42 -0700369FROM openbmc-base as openbmc-stdplus
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930370RUN 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 -0700371cd stdplus-* && \
372meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
373ninja -C build && \
374ninja -C build install
375
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700376FROM openbmc-base as openbmc-sdbusplus
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930377RUN 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 -0700378cd sdbusplus-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030379./bootstrap.sh && \
Patrick Williams929034f2020-05-19 07:10:14 -0500380./configure ${CONFIGURE_FLAGS[@]} --disable-tests && \
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-sdeventplus
William A. Kennington III4ca0e7b2019-03-27 03:33:18 -0700385COPY --from=openbmc-function2 ${PREFIX} ${PREFIX}
William A. Kennington IIIa472fda2019-03-21 21:06:38 -0700386COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930387RUN 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 -0700388cd sdeventplus-* && \
William A. Kennington III2b639f32019-03-21 19:00:38 -0700389meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
390ninja -C build && \
391ninja -C build install
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700392
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700393FROM openbmc-base as openbmc-gpioplus
William A. Kennington III1aed1252019-01-15 18:18:03 -0800394COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930395RUN 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 -0700396cd gpioplus-* && \
William A. Kennington III83648312019-03-27 19:53:18 -0700397meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
398ninja -C build && \
399ninja -C build install
Patrick Venture22329962018-09-14 10:23:04 -0700400
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700401FROM openbmc-base as openbmc-phosphor-dbus-interfaces
402COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930403RUN 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 -0700404cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030405./bootstrap.sh && \
Matt Spinlerc3ce8d42020-01-10 11:30:33 -0600406./configure ${CONFIGURE_FLAGS[@]} --enable-openpower-dbus-interfaces && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030407make -j$(nproc) && \
408make install
409
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700410FROM openbmc-base as openbmc-openpower-dbus-interfaces
411COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
Andrew Geisslerf876a3c2019-07-23 12:41:51 -0500412COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930413RUN 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 -0700414cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030415./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700416./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030417make -j$(nproc) && \
418make install
419
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700420FROM openbmc-base as openbmc-phosphor-logging
421COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
422COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4f47a5c2019-07-16 14:57:57 -0700423COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700424COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinler1d156512018-10-29 09:56:57 -0500425COPY --from=openbmc-openpower-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinlerfd51e812020-01-14 13:31:22 -0600426COPY --from=openbmc-fifo_map ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930427RUN 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 -0700428cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030429./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700430./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030431make -j$(nproc) && \
432make install
433
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700434FROM openbmc-base as openbmc-phosphor-objmgr
435COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
436COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
437COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
438COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930439RUN 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 -0700440cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030441./bootstrap.sh && \
Matt Spinlerf3e08ee2019-04-10 11:13:33 -0500442./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030443make -j$(nproc) && \
444make install
445
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930446FROM openbmc-base as open-power-pdbg
447RUN curl -L https://github.com/open-power/pdbg/archive/${PKG_REV['open-power/pdbg']}.tar.gz | tar -xz && \
448cd pdbg-* && \
449./bootstrap.sh && \
450./configure ${CONFIGURE_FLAGS[@]} && \
451make -j$(nproc) && \
452make install
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700453
Matt Spinlerbd1ff812019-11-14 10:00:04 -0600454FROM openbmc-base as openbmc-pldm
455COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
456COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
457COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
458COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
459COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
460COPY --from=openbmc-json ${PREFIX} ${PREFIX}
461COPY --from=openbmc-CLI11 ${PREFIX} ${PREFIX}
462RUN curl -L https://github.com/openbmc/pldm/archive/${PKG_REV['openbmc/pldm']}.tar.gz | tar -xz && \
463cd pldm-* && \
464meson build -Dprefix=${PREFIX} -Dtests=disabled && \
465ninja -C build && \
466ninja -C build install
467
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700468# Build the final output image
469FROM openbmc-base
470${COPY_CMDS}
471
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700472# Some of our infrastructure still relies on the presence of this file
473# even though it is no longer needed to rebuild the docker environment
474# NOTE: The file is sorted to ensure the ordering is stable.
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800475RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /tmp/depcache
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700476
477# Final configuration for the workspace
478RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington IIIc1e93cb2019-07-16 15:40:25 -0700479RUN mkdir -p "$(dirname "${HOME}")"
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700480RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
William A. Kennington III3bba8fb2018-12-13 15:07:49 -0800481RUN sed -i '1iDefaults umask=000' /etc/sudoers
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800482RUN echo "${USER} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700483
Matthew Barthb4aea672016-11-10 14:59:52 -0600484RUN /bin/bash
485EOF
486)
487fi
488################################# docker img # #################################
489
490# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700491docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"