blob: 691f9cd2cb578331f12ab33379258344d8a84820 [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
Lei YU139929a2020-05-26 18:48:05 +080014# UBUNTU_MIRROR: <optional, the URL of a mirror of Ubuntu to override the
15# default ones in /etc/apt/sources.list>
16# default is empty, and no mirror is used.
Matthew Barthb4aea672016-11-10 14:59:52 -060017
Andrew Geisslerb3175012019-09-01 20:51:14 -050018set -xeuo pipefail
Matthew Barthb4aea672016-11-10 14:59:52 -060019
Andrew Geisslerd79407e2018-11-12 15:26:57 -060020DOCKER_IMG_NAME=${DOCKER_IMG_NAME:-"openbmc/ubuntu-unit-test"}
Andrew Geissler595739b2020-05-19 14:21:49 -050021DISTRO=${DISTRO:-"ubuntu:focal"}
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060022BRANCH=${BRANCH:-"master"}
Lei YU139929a2020-05-26 18:48:05 +080023UBUNTU_MIRROR=${UBUNTU_MIRROR:-""}
Matthew Barthb4aea672016-11-10 14:59:52 -060024
25# Determine the architecture
26ARCH=$(uname -m)
27case ${ARCH} in
28 "ppc64le")
29 DOCKER_BASE="ppc64le/"
30 ;;
31 "x86_64")
32 DOCKER_BASE=""
33 ;;
34 *)
35 echo "Unsupported system architecture(${ARCH}) found for docker image"
36 exit 1
37esac
38
William A. Kennington III32deed82018-09-17 20:48:23 -070039# Setup temporary files
40DEPCACHE_FILE=""
41cleanup() {
42 local status="$?"
Patrick Venture87445f22018-10-15 17:10:46 -070043 if [[ -n "$DEPCACHE_FILE" ]]; then
William A. Kennington III32deed82018-09-17 20:48:23 -070044 rm -f "$DEPCACHE_FILE"
45 fi
46 trap - EXIT ERR
47 exit "$status"
48}
49trap cleanup EXIT ERR INT TERM QUIT
50DEPCACHE_FILE="$(mktemp)"
51
William A. Kennington III4815f702018-10-03 19:27:42 -070052HEAD_PKGS=(
Andrew Jefferyb4296f52019-08-07 11:03:09 +093053 openbmc/phosphor-objmgr
54 openbmc/sdbusplus
55 openbmc/sdeventplus
56 openbmc/stdplus
57 openbmc/gpioplus
58 openbmc/phosphor-logging
59 openbmc/phosphor-dbus-interfaces
60 openbmc/openpower-dbus-interfaces
Andrew Jeffery8a273be2019-08-07 11:09:46 +093061 open-power/pdbg
Matt Spinlerbd1ff812019-11-14 10:00:04 -060062 openbmc/pldm
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070063)
William A. Kennington III32deed82018-09-17 20:48:23 -070064
65# Generate a list of depcache entries
66# We want to do this in parallel since the package list is growing
67# and the network lookup is low overhead but decently high latency.
68# This doesn't worry about producing a stable DEPCACHE_FILE, that is
69# done by readers who need a stable ordering.
70generate_depcache_entry() {
71 local package="$1"
72
73 local tip
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060074 # Need to continue if branch not found, hence || true at end
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/$BRANCH" | awk '{ print $1 }' || true)
77
78 # If specific branch is not found then try master
Patrick Venture530a8022019-02-13 12:16:56 -080079 if [[ ! -n "$tip" ]]; then
Andrew Jefferyb4296f52019-08-07 11:03:09 +093080 tip=$(git ls-remote --heads "https://github.com/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060081 grep "refs/heads/master" | awk '{ print $1 }')
82 fi
William A. Kennington III32deed82018-09-17 20:48:23 -070083
84 # Lock the file to avoid interlaced writes
85 exec 3>> "$DEPCACHE_FILE"
Andrew Geisslerdda45132019-09-01 21:03:04 -050086 flock 3
William A. Kennington III32deed82018-09-17 20:48:23 -070087 echo "$package:$tip" >&3
88 exec 3>&-
89}
William A. Kennington III4815f702018-10-03 19:27:42 -070090for package in "${HEAD_PKGS[@]}"; do
William A. Kennington III32deed82018-09-17 20:48:23 -070091 generate_depcache_entry "$package" &
Andrew Jeffery221eeda2018-03-08 13:32:43 +103092done
William A. Kennington III32deed82018-09-17 20:48:23 -070093wait
Andrew Jeffery221eeda2018-03-08 13:32:43 +103094
William A. Kennington III4815f702018-10-03 19:27:42 -070095# A list of package versions we are building
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070096# Start off by listing the stating versions of third-party sources
97declare -A PKG_REV=(
Andrew Geissler62771512020-05-28 15:39:48 -050098 [boost]=1.73.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070099 [cereal]=v1.2.2
William A. Kennington III84a19a62020-02-25 14:06:57 -0800100 [catch2]=v2.11.1
William A. Kennington III78655e52020-02-25 14:07:30 -0800101 [CLI11]=v1.9.0
William A. Kennington IIIbd6850a2020-02-25 14:08:02 -0800102 [fmt]=6.1.2
William A. Kennington III6135ba32020-02-25 14:10:11 -0800103 # Snapshot from 2020-01-03
104 [function2]=3a0746bf5f601dfed05330aefcb6854354fce07d
William A. Kennington III171151f2020-02-25 14:10:27 -0800105 # Snapshot from 2020-02-13
106 [googletest]=23b2a3b1cf803999fb38175f6e9e038a4495c8a5
Andrew Geissler1976d392020-05-20 13:09:33 -0500107 # TODO - Move back to released json once gcc10 fix is available
108 # [json]=v3.7.3
109 # Snapshot from 2020-05-19
110 [json]=5cfa8a586ee1a656190491c1de20a82fb40fab5d
William A. Kennington III0be795e2019-06-26 12:12:33 -0700111 # Snapshot from 2019-05-24
112 [lcov]=75fbae1cfc5027f818a0bb865bf6f96fab3202da
Patrick Venture19b811b2019-05-01 13:55:41 -0700113 # dev-5.0 2019-05-03
114 [linux-headers]=8bf6567e77f7aa68975b7c9c6d044bba690bf327
Jae Hyun Yood34cf322019-09-09 11:50:18 -0700115 # Snapshot from 2019-09-03
116 [libvncserver]=1354f7f1bb6962dab209eddb9d6aac1f03408110
William A. Kennington III9c900d02020-03-13 01:33:02 -0700117 [span-lite]=v0.7.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700118 # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
119 [tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
Brad Bishop0204bec2019-11-07 16:13:54 -0500120 # version from meta-openembedded/meta-oe/recipes-devtools/valijson/valijson_git.bb
121 [valijson]=c2f22fddf599d04dc33fcd7ed257c698a05345d9
Matt Spinlerfd51e812020-01-14 13:31:22 -0600122 # version from meta-openembedded/meta-oe/recipes-devtools/nlohmann-fifo/nlohmann-fifo_git.bb
123 [fifo_map]=0dfbf5dacbb15a32c43f912a7e66a54aae39d0f9
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700124)
William A. Kennington III4815f702018-10-03 19:27:42 -0700125
126# Turn the depcache into a dictionary so we can reference the HEAD of each repo
127for line in $(cat "$DEPCACHE_FILE"); do
128 linearr=($(echo "$line" | tr ':' ' '))
129 PKG_REV["${linearr[0]}"]="${linearr[1]}"
130done
131
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700132# Define common flags used for builds
133PREFIX="/usr/local"
134CONFIGURE_FLAGS=(
135 "--prefix=${PREFIX}"
136)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700137CMAKE_FLAGS=(
138 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
139 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700140 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -0700141)
142
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930143stagename()
144{
145 local cooked="$1"
146
147 if ! echo "$cooked" | grep -q '/'
148 then
149 cooked=openbmc-"$cooked"
150 fi
151 echo "$cooked" | tr '/' '-'
152}
153
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700154# Build the commands needed to compose our final image
155COPY_CMDS=""
156# We must sort the packages, otherwise we might produce an unstable
157# docker file and rebuild the image unnecessarily
158for pkg in $(echo "${!PKG_REV[@]}" | tr ' ' '\n' | LC_COLLATE=C sort -s); do
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930159 COPY_CMDS+="COPY --from=$(stagename ${pkg}) ${PREFIX} ${PREFIX}"$'\n'
William A. Kennington III36f26222018-11-01 13:40:18 -0700160 # Workaround for upstream docker bug and multiple COPY cmds
161 # https://github.com/moby/moby/issues/37965
162 COPY_CMDS+="RUN true"$'\n'
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700163done
164
Matthew Barthb4aea672016-11-10 14:59:52 -0600165################################# docker img # #################################
166# Create docker image that can run package unit tests
167if [[ "${DISTRO}" == "ubuntu"* ]]; then
Lei YU139929a2020-05-26 18:48:05 +0800168
169MIRROR=""
170if [[ -n "${UBUNTU_MIRROR}" ]]; then
171 MIRROR="RUN echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME) main restricted universe multiverse\" > /etc/apt/sources.list && \
172 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-updates main restricted universe multiverse\" >> /etc/apt/sources.list && \
173 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-security main restricted universe multiverse\" >> /etc/apt/sources.list && \
174 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-proposed main restricted universe multiverse\" >> /etc/apt/sources.list && \
175 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-backports main restricted universe multiverse\" >> /etc/apt/sources.list"
176
177fi
178
Matthew Barthb4aea672016-11-10 14:59:52 -0600179Dockerfile=$(cat << EOF
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700180FROM ${DOCKER_BASE}${DISTRO} as openbmc-base
Matthew Barthb4aea672016-11-10 14:59:52 -0600181
Lei YU139929a2020-05-26 18:48:05 +0800182${MIRROR}
183
Matthew Barthb4aea672016-11-10 14:59:52 -0600184ENV DEBIAN_FRONTEND noninteractive
185
Andrew Geissler595739b2020-05-19 14:21:49 -0500186ENV PYTHONPATH "/usr/local/lib/python3.8/site-packages/"
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500187
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700188# We need the keys to be imported for dbgsym repos
189# New releases have a package, older ones fall back to manual fetching
190# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
191RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
192 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
193
194# Parse the current repo list into a debug repo list
195RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
196
197# Remove non-existent debug repos
198RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
199
200RUN cat /etc/apt/sources.list.d/debug.list
201
William A. Kennington III8b9f4e82020-05-26 22:41:35 -0700202RUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \
Andrew Geissler595739b2020-05-19 14:21:49 -0500203 gcc-10 \
204 g++-10 \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700205 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600206 libc6-dev \
207 libtool \
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800208 bison \
209 flex \
Matthew Barthb4aea672016-11-10 14:59:52 -0600210 cmake \
Saqib Khan362ca852017-03-21 10:48:46 -0500211 python3 \
212 python3-dev\
213 python3-yaml \
214 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930215 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500216 python3-setuptools \
Andrew Jefferybda43ce2020-03-13 12:19:49 +1030217 python3-git \
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500218 python3-socks \
Matthew Barthb4aea672016-11-10 14:59:52 -0600219 pkg-config \
220 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700221 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600222 libsystemd-dev \
Brad Bishopa1ee2652019-03-29 16:42:06 -0400223 systemd \
Matthew Barth92f93872017-02-08 11:19:27 -0600224 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500225 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700226 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500227 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700228 libpng-dev \
William A. Kennington IIIbaeb4f52018-12-06 14:57:13 -0800229 ninja-build \
Matthew Barthb4aea672016-11-10 14:59:52 -0600230 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700231 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600232 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500233 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800234 iputils-ping \
Patrick Williams80d07282020-05-20 10:56:22 -0500235 clang-10 \
236 clang-format-10 \
237 clang-tidy-10 \
238 clang-tools-10 \
Gunnar Mills6b25a032019-07-11 12:16:35 -0500239 npm \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530240 iproute2 \
241 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700242 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530243 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700244 libsnmp-dev \
245 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700246 valgrind-dbg \
James Feist878df5c2018-07-26 14:54:28 -0700247 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530248 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700249 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500250 wget \
Patrick Venturedef31a82018-12-10 13:24:46 -0800251 libldap2-dev \
252 libprotobuf-dev \
William A. Kennington III0be795e2019-06-26 12:12:33 -0700253 libperlio-gzip-perl \
254 libjson-perl \
James Feistcf8fddb2019-05-30 15:30:42 -0700255 protobuf-compiler \
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930256 libgpiod-dev \
Andrew Geissler938d21e2019-09-01 21:09:33 -0500257 device-tree-compiler \
258 cppcheck
Matthew Barthb4aea672016-11-10 14:59:52 -0600259
Andrew Geissler595739b2020-05-19 14:21:49 -0500260RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 1000 \
261 --slave /usr/bin/g++ g++ /usr/bin/g++-10 \
262 --slave /usr/bin/gcov gcov /usr/bin/gcov-10 \
263 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-10 \
264 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-10
William A. Kennington III0232a252019-06-26 12:13:47 -0700265
Patrick Williamsf7c2c5f2020-02-06 10:51:04 -0600266RUN pip3 install inflection
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500267RUN pip3 install pycodestyle
Shawn McCarneya49dbde2020-03-05 08:52:05 -0600268RUN pip3 install jsonschema
William A. Kennington IIIe39ad882020-02-25 13:53:33 -0800269RUN pip3 install meson==0.53.2
Matthew Bartha2366d92017-01-31 09:46:20 -0600270
William A. Kennington III1a651822019-01-16 14:48:52 -0800271FROM openbmc-base as openbmc-lcov
272RUN curl -L https://github.com/linux-test-project/lcov/archive/${PKG_REV['lcov']}.tar.gz | tar -xz && \
273cd lcov-* && \
274make -j$(nproc) && \
275make install
276
William A. Kennington III8ff1e0f2019-03-27 03:19:51 -0700277FROM openbmc-base as openbmc-function2
William A. Kennington IIIf6884642019-03-29 15:19:20 -0700278RUN mkdir ${PREFIX}/include/function2 && \
279curl -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 -0700280
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700281FROM openbmc-base as openbmc-googletest
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700282RUN curl -L https://github.com/google/googletest/archive/${PKG_REV['googletest']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700283cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700284mkdir build && \
285cd build && \
William A. Kennington III3eaf5922018-12-11 18:16:09 -0800286cmake ${CMAKE_FLAGS[@]} -DTHREADS_PREFER_PTHREAD_FLAG=ON .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700287make -j$(nproc) && \
288make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600289
William A. Kennington III1e4d5332019-10-18 12:24:18 -0700290FROM openbmc-base as openbmc-catch2
291RUN curl -L https://github.com/catchorg/Catch2/archive/${PKG_REV['catch2']}.tar.gz | tar -xz && \
292cd Catch2-* && \
293mkdir build && \
294cd build && \
William A. Kennington III84a19a62020-02-25 14:06:57 -0800295cmake ${CMAKE_FLAGS[@]} -DBUILD_TESTING=OFF -DCATCH_INSTALL_DOCS=OFF .. && \
William A. Kennington III1e4d5332019-10-18 12:24:18 -0700296make -j$(nproc) && \
297make install
298
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700299FROM openbmc-base as openbmc-cereal
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700300RUN curl -L https://github.com/USCiLab/cereal/archive/${PKG_REV['cereal']}.tar.gz | tar -xz && \
301cp -a cereal-*/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500302
William A. Kennington III1962d572018-09-12 22:38:15 -0700303FROM openbmc-base as openbmc-CLI11
304RUN curl -L https://github.com/CLIUtils/CLI11/archive/${PKG_REV['CLI11']}.tar.gz | tar -xz && \
305cd CLI11-* && \
306mkdir build && \
307cd build && \
William A. Kennington III78655e52020-02-25 14:07:30 -0800308cmake ${CMAKE_FLAGS[@]} -DCLI11_BUILD_DOCS=OFF -DBUILD_TESTING=OFF -DCLI11_BUILD_EXAMPLES=OFF .. && \
William A. Kennington III1962d572018-09-12 22:38:15 -0700309make -j$(nproc) && \
310make install
311
William A. Kennington III6b50d702019-07-09 16:44:05 -0700312FROM openbmc-base as openbmc-fmt
313RUN curl -L https://github.com/fmtlib/fmt/archive/${PKG_REV['fmt']}.tar.gz | tar -xz && \
314cd fmt-* && \
315mkdir build && \
316cd build && \
317cmake ${CMAKE_FLAGS[@]} -DFMT_DOC=OFF -DFMT_TEST=OFF .. && \
318make -j$(nproc) && \
319make install
320
Andrew Geissler1976d392020-05-20 13:09:33 -0500321# nlohmann json provides all of its function in a single header file
322# TODO - Go back to using a release once gcc 10 fixes are in
323# 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 -0700324FROM openbmc-base as openbmc-json
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700325RUN mkdir ${PREFIX}/include/nlohmann/ && \
Andrew Geissler1976d392020-05-20 13:09:33 -0500326curl -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 -0500327ln -s nlohmann/json.hpp ${PREFIX}/include/json.hpp
David Cobbleye99c07a2017-12-22 11:39:01 -0800328
Matt Spinlerfd51e812020-01-14 13:31:22 -0600329FROM openbmc-base as openbmc-fifo_map
330RUN curl -L https://github.com/nlohmann/fifo_map/archive/${PKG_REV['fifo_map']}.tar.gz | tar -xz && \
331cd fifo_map-*/src && cp fifo_map.hpp ${PREFIX}/include/
332
William A. Kennington IIIe1d68692019-10-18 12:26:12 -0700333FROM openbmc-base as openbmc-span-lite
334RUN curl -L https://github.com/martinmoene/span-lite/archive/${PKG_REV['span-lite']}.tar.gz | tar -xz && \
335cd span-lite-* && \
336mkdir build && \
337cd build && \
338cmake ${CMAKE_FLAGS[@]} -DSPAN_LITE_OPT_BUILD_TESTS=OFF .. && \
339make -j$(nproc) && \
340make install
341
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800342FROM openbmc-base as openbmc-linux-headers
343RUN curl -L https://github.com/openbmc/linux/archive/${PKG_REV['linux-headers']}.tar.gz | tar -xz && \
344cd linux-* && \
345make -j$(nproc) defconfig && \
346make INSTALL_HDR_PATH=/usr/local headers_install
347
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700348FROM openbmc-base as openbmc-boost
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700349RUN 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 -0700350cd boost_*/ && \
351./bootstrap.sh --prefix=${PREFIX} --with-libraries=context,coroutine && \
352./b2 && ./b2 install --prefix=${PREFIX}
James Feist878df5c2018-07-26 14:54:28 -0700353
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700354FROM openbmc-base as openbmc-tinyxml2
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700355RUN curl -L https://github.com/leethomason/tinyxml2/archive/${PKG_REV['tinyxml2']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700356cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700357mkdir build && \
358cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700359cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700360make -j$(nproc) && \
361make install
362
Brad Bishop0204bec2019-11-07 16:13:54 -0500363FROM openbmc-base as openbmc-valijson
364RUN curl -L https://github.com/tristanpenman/valijson/archive/${PKG_REV['valijson']}.tar.gz | tar -xz && \
365cd valijson-* && \
366mkdir build && \
367cd build && \
368cmake ${CMAKE_FLAGS[@]} -DINSTALL_HEADERS=1 -DBUILD_TESTS=0 .. && \
369make -j$(nproc) && \
370make install
371
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700372FROM openbmc-base as openbmc-libvncserver
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700373RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700374cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700375mkdir build && \
376cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700377cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700378make -j$(nproc) && \
379make install
380
William A. Kennington III1b873212019-03-21 19:02:42 -0700381FROM openbmc-base as openbmc-stdplus
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930382RUN 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 -0700383cd stdplus-* && \
384meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
385ninja -C build && \
386ninja -C build install
387
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700388FROM openbmc-base as openbmc-sdbusplus
Patrick Williams9e32de22020-06-01 07:31:17 -0500389COPY --from=openbmc-googletest ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930390RUN 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 -0700391cd sdbusplus-* && \
Patrick Williams9e32de22020-06-01 07:31:17 -0500392meson build -Dprefix=${PREFIX} && \
393ninja -C build && \
394ninja -C build install && \
395cd tools && \
396./setup.py install --root=/ --prefix=${PREFIX}
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030397
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700398FROM openbmc-base as openbmc-sdeventplus
William A. Kennington III4ca0e7b2019-03-27 03:33:18 -0700399COPY --from=openbmc-function2 ${PREFIX} ${PREFIX}
William A. Kennington IIIa472fda2019-03-21 21:06:38 -0700400COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930401RUN 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 -0700402cd sdeventplus-* && \
William A. Kennington III2b639f32019-03-21 19:00:38 -0700403meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
404ninja -C build && \
405ninja -C build install
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700406
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700407FROM openbmc-base as openbmc-gpioplus
William A. Kennington III1aed1252019-01-15 18:18:03 -0800408COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930409RUN 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 -0700410cd gpioplus-* && \
William A. Kennington III83648312019-03-27 19:53:18 -0700411meson build -Dprefix=${PREFIX} -Dtests=disabled -Dexamples=false && \
412ninja -C build && \
413ninja -C build install
Patrick Venture22329962018-09-14 10:23:04 -0700414
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700415FROM openbmc-base as openbmc-phosphor-dbus-interfaces
416COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930417RUN 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 -0700418cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030419./bootstrap.sh && \
Matt Spinlerc3ce8d42020-01-10 11:30:33 -0600420./configure ${CONFIGURE_FLAGS[@]} --enable-openpower-dbus-interfaces && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030421make -j$(nproc) && \
422make install
423
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700424FROM openbmc-base as openbmc-openpower-dbus-interfaces
425COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
Andrew Geisslerf876a3c2019-07-23 12:41:51 -0500426COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930427RUN 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 -0700428cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030429./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700430./configure ${CONFIGURE_FLAGS[@]} && \
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-logging
435COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
436COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4f47a5c2019-07-16 14:57:57 -0700437COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700438COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinler1d156512018-10-29 09:56:57 -0500439COPY --from=openbmc-openpower-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinlerfd51e812020-01-14 13:31:22 -0600440COPY --from=openbmc-fifo_map ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930441RUN 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 -0700442cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030443./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700444./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030445make -j$(nproc) && \
446make install
447
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700448FROM openbmc-base as openbmc-phosphor-objmgr
449COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
450COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
451COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
452COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930453RUN 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 -0700454cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030455./bootstrap.sh && \
Matt Spinlerf3e08ee2019-04-10 11:13:33 -0500456./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030457make -j$(nproc) && \
458make install
459
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930460FROM openbmc-base as open-power-pdbg
461RUN curl -L https://github.com/open-power/pdbg/archive/${PKG_REV['open-power/pdbg']}.tar.gz | tar -xz && \
462cd pdbg-* && \
463./bootstrap.sh && \
464./configure ${CONFIGURE_FLAGS[@]} && \
465make -j$(nproc) && \
466make install
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700467
Matt Spinlerbd1ff812019-11-14 10:00:04 -0600468FROM openbmc-base as openbmc-pldm
469COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
470COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
471COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
472COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
473COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
474COPY --from=openbmc-json ${PREFIX} ${PREFIX}
475COPY --from=openbmc-CLI11 ${PREFIX} ${PREFIX}
476RUN curl -L https://github.com/openbmc/pldm/archive/${PKG_REV['openbmc/pldm']}.tar.gz | tar -xz && \
477cd pldm-* && \
478meson build -Dprefix=${PREFIX} -Dtests=disabled && \
479ninja -C build && \
480ninja -C build install
481
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700482# Build the final output image
483FROM openbmc-base
484${COPY_CMDS}
485
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700486# Some of our infrastructure still relies on the presence of this file
487# even though it is no longer needed to rebuild the docker environment
488# NOTE: The file is sorted to ensure the ordering is stable.
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800489RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /tmp/depcache
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700490
491# Final configuration for the workspace
492RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington IIIc1e93cb2019-07-16 15:40:25 -0700493RUN mkdir -p "$(dirname "${HOME}")"
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700494RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
William A. Kennington III3bba8fb2018-12-13 15:07:49 -0800495RUN sed -i '1iDefaults umask=000' /etc/sudoers
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800496RUN echo "${USER} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700497
Matthew Barthb4aea672016-11-10 14:59:52 -0600498RUN /bin/bash
499EOF
500)
501fi
502################################# docker img # #################################
503
Lei YU139929a2020-05-26 18:48:05 +0800504http_proxy=${http_proxy:-}
505proxy_args=""
506if [[ -n "${http_proxy}" ]]; then
507 proxy_args="--build-arg http_proxy=${http_proxy} --build-arg https_proxy=${http_proxy}"
508fi
509
Matthew Barthb4aea672016-11-10 14:59:52 -0600510# Build above image
Lei YU139929a2020-05-26 18:48:05 +0800511docker build ${proxy_args} --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"