blob: fcfce115627016bc3590ea01351a73a3243c113c [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 III9afb7662020-06-03 19:04:19 -0700100 [catch2]=v2.12.2
William A. Kennington III78655e52020-02-25 14:07:30 -0800101 [CLI11]=v1.9.0
William A. Kennington III9afb7662020-06-03 19:04:19 -0700102 [fmt]=6.2.1
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)
William A. Kennington III248cdc62020-06-03 18:50:55 -0700142MESON_FLAGS=(
William A. Kennington III49400512020-06-03 18:51:42 -0700143 "--wrap-mode=nodownload"
William A. Kennington III248cdc62020-06-03 18:50:55 -0700144 "-Dprefix=${PREFIX}"
145)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700146
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930147stagename()
148{
149 local cooked="$1"
150
151 if ! echo "$cooked" | grep -q '/'
152 then
153 cooked=openbmc-"$cooked"
154 fi
155 echo "$cooked" | tr '/' '-'
156}
157
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700158# Build the commands needed to compose our final image
159COPY_CMDS=""
160# We must sort the packages, otherwise we might produce an unstable
161# docker file and rebuild the image unnecessarily
162for pkg in $(echo "${!PKG_REV[@]}" | tr ' ' '\n' | LC_COLLATE=C sort -s); do
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930163 COPY_CMDS+="COPY --from=$(stagename ${pkg}) ${PREFIX} ${PREFIX}"$'\n'
William A. Kennington III36f26222018-11-01 13:40:18 -0700164 # Workaround for upstream docker bug and multiple COPY cmds
165 # https://github.com/moby/moby/issues/37965
166 COPY_CMDS+="RUN true"$'\n'
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700167done
168
Matthew Barthb4aea672016-11-10 14:59:52 -0600169################################# docker img # #################################
170# Create docker image that can run package unit tests
171if [[ "${DISTRO}" == "ubuntu"* ]]; then
Lei YU139929a2020-05-26 18:48:05 +0800172
173MIRROR=""
174if [[ -n "${UBUNTU_MIRROR}" ]]; then
175 MIRROR="RUN echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME) main restricted universe multiverse\" > /etc/apt/sources.list && \
176 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-updates main restricted universe multiverse\" >> /etc/apt/sources.list && \
177 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-security main restricted universe multiverse\" >> /etc/apt/sources.list && \
178 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-proposed main restricted universe multiverse\" >> /etc/apt/sources.list && \
179 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-backports main restricted universe multiverse\" >> /etc/apt/sources.list"
180
181fi
182
Matthew Barthb4aea672016-11-10 14:59:52 -0600183Dockerfile=$(cat << EOF
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700184FROM ${DOCKER_BASE}${DISTRO} as openbmc-base
Matthew Barthb4aea672016-11-10 14:59:52 -0600185
Lei YU139929a2020-05-26 18:48:05 +0800186${MIRROR}
187
Matthew Barthb4aea672016-11-10 14:59:52 -0600188ENV DEBIAN_FRONTEND noninteractive
189
Andrew Geissler595739b2020-05-19 14:21:49 -0500190ENV PYTHONPATH "/usr/local/lib/python3.8/site-packages/"
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500191
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700192# We need the keys to be imported for dbgsym repos
193# New releases have a package, older ones fall back to manual fetching
194# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
195RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
196 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
197
198# Parse the current repo list into a debug repo list
199RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
200
201# Remove non-existent debug repos
202RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
203
204RUN cat /etc/apt/sources.list.d/debug.list
205
William A. Kennington III8b9f4e82020-05-26 22:41:35 -0700206RUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \
Andrew Geissler595739b2020-05-19 14:21:49 -0500207 gcc-10 \
208 g++-10 \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700209 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600210 libc6-dev \
211 libtool \
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800212 bison \
213 flex \
Matthew Barthb4aea672016-11-10 14:59:52 -0600214 cmake \
Saqib Khan362ca852017-03-21 10:48:46 -0500215 python3 \
216 python3-dev\
217 python3-yaml \
218 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930219 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500220 python3-setuptools \
Andrew Jefferybda43ce2020-03-13 12:19:49 +1030221 python3-git \
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500222 python3-socks \
Matthew Barthb4aea672016-11-10 14:59:52 -0600223 pkg-config \
224 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700225 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600226 libsystemd-dev \
Brad Bishopa1ee2652019-03-29 16:42:06 -0400227 systemd \
Matthew Barth92f93872017-02-08 11:19:27 -0600228 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500229 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700230 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500231 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700232 libpng-dev \
William A. Kennington IIIbaeb4f52018-12-06 14:57:13 -0800233 ninja-build \
Matthew Barthb4aea672016-11-10 14:59:52 -0600234 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700235 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600236 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500237 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800238 iputils-ping \
Patrick Williams80d07282020-05-20 10:56:22 -0500239 clang-10 \
240 clang-format-10 \
241 clang-tidy-10 \
242 clang-tools-10 \
Gunnar Mills6b25a032019-07-11 12:16:35 -0500243 npm \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530244 iproute2 \
245 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700246 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530247 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700248 libsnmp-dev \
249 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700250 valgrind-dbg \
James Feist878df5c2018-07-26 14:54:28 -0700251 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530252 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700253 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500254 wget \
Patrick Venturedef31a82018-12-10 13:24:46 -0800255 libldap2-dev \
256 libprotobuf-dev \
William A. Kennington III0be795e2019-06-26 12:12:33 -0700257 libperlio-gzip-perl \
258 libjson-perl \
James Feistcf8fddb2019-05-30 15:30:42 -0700259 protobuf-compiler \
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930260 libgpiod-dev \
Andrew Geissler938d21e2019-09-01 21:09:33 -0500261 device-tree-compiler \
Benjamin Fair716780a2020-06-05 17:57:14 -0700262 cppcheck \
Asmitha Karunanithid0810812020-06-20 01:54:14 -0500263 libpciaccess-dev \
264 libmimetic-dev
Matthew Barthb4aea672016-11-10 14:59:52 -0600265
Andrew Geissler595739b2020-05-19 14:21:49 -0500266RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 1000 \
267 --slave /usr/bin/g++ g++ /usr/bin/g++-10 \
268 --slave /usr/bin/gcov gcov /usr/bin/gcov-10 \
269 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-10 \
270 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-10
William A. Kennington III0232a252019-06-26 12:13:47 -0700271
Patrick Williamsf7c2c5f2020-02-06 10:51:04 -0600272RUN pip3 install inflection
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500273RUN pip3 install pycodestyle
Shawn McCarneya49dbde2020-03-05 08:52:05 -0600274RUN pip3 install jsonschema
Patrick Williams2c880fe2020-06-15 13:00:45 -0500275RUN pip3 install meson==0.54.3
Matthew Bartha2366d92017-01-31 09:46:20 -0600276
William A. Kennington III1a651822019-01-16 14:48:52 -0800277FROM openbmc-base as openbmc-lcov
278RUN curl -L https://github.com/linux-test-project/lcov/archive/${PKG_REV['lcov']}.tar.gz | tar -xz && \
279cd lcov-* && \
280make -j$(nproc) && \
281make install
282
William A. Kennington III8ff1e0f2019-03-27 03:19:51 -0700283FROM openbmc-base as openbmc-function2
William A. Kennington IIIf6884642019-03-29 15:19:20 -0700284RUN mkdir ${PREFIX}/include/function2 && \
285curl -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 -0700286
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700287FROM openbmc-base as openbmc-googletest
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700288RUN curl -L https://github.com/google/googletest/archive/${PKG_REV['googletest']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700289cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700290mkdir build && \
291cd build && \
William A. Kennington III3eaf5922018-12-11 18:16:09 -0800292cmake ${CMAKE_FLAGS[@]} -DTHREADS_PREFER_PTHREAD_FLAG=ON .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700293make -j$(nproc) && \
294make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600295
William A. Kennington III1e4d5332019-10-18 12:24:18 -0700296FROM openbmc-base as openbmc-catch2
297RUN curl -L https://github.com/catchorg/Catch2/archive/${PKG_REV['catch2']}.tar.gz | tar -xz && \
298cd Catch2-* && \
299mkdir build && \
300cd build && \
William A. Kennington III84a19a62020-02-25 14:06:57 -0800301cmake ${CMAKE_FLAGS[@]} -DBUILD_TESTING=OFF -DCATCH_INSTALL_DOCS=OFF .. && \
William A. Kennington III1e4d5332019-10-18 12:24:18 -0700302make -j$(nproc) && \
303make install
304
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700305FROM openbmc-base as openbmc-cereal
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700306RUN curl -L https://github.com/USCiLab/cereal/archive/${PKG_REV['cereal']}.tar.gz | tar -xz && \
307cp -a cereal-*/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500308
William A. Kennington III1962d572018-09-12 22:38:15 -0700309FROM openbmc-base as openbmc-CLI11
310RUN curl -L https://github.com/CLIUtils/CLI11/archive/${PKG_REV['CLI11']}.tar.gz | tar -xz && \
311cd CLI11-* && \
312mkdir build && \
313cd build && \
William A. Kennington III78655e52020-02-25 14:07:30 -0800314cmake ${CMAKE_FLAGS[@]} -DCLI11_BUILD_DOCS=OFF -DBUILD_TESTING=OFF -DCLI11_BUILD_EXAMPLES=OFF .. && \
William A. Kennington III1962d572018-09-12 22:38:15 -0700315make -j$(nproc) && \
316make install
317
William A. Kennington III6b50d702019-07-09 16:44:05 -0700318FROM openbmc-base as openbmc-fmt
319RUN curl -L https://github.com/fmtlib/fmt/archive/${PKG_REV['fmt']}.tar.gz | tar -xz && \
320cd fmt-* && \
321mkdir build && \
322cd build && \
323cmake ${CMAKE_FLAGS[@]} -DFMT_DOC=OFF -DFMT_TEST=OFF .. && \
324make -j$(nproc) && \
325make install
326
Andrew Geissler1976d392020-05-20 13:09:33 -0500327# nlohmann json provides all of its function in a single header file
328# TODO - Go back to using a release once gcc 10 fixes are in
329# 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 -0700330FROM openbmc-base as openbmc-json
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700331RUN mkdir ${PREFIX}/include/nlohmann/ && \
Andrew Geissler1976d392020-05-20 13:09:33 -0500332curl -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 -0500333ln -s nlohmann/json.hpp ${PREFIX}/include/json.hpp
David Cobbleye99c07a2017-12-22 11:39:01 -0800334
Matt Spinlerfd51e812020-01-14 13:31:22 -0600335FROM openbmc-base as openbmc-fifo_map
336RUN curl -L https://github.com/nlohmann/fifo_map/archive/${PKG_REV['fifo_map']}.tar.gz | tar -xz && \
337cd fifo_map-*/src && cp fifo_map.hpp ${PREFIX}/include/
338
William A. Kennington IIIe1d68692019-10-18 12:26:12 -0700339FROM openbmc-base as openbmc-span-lite
340RUN curl -L https://github.com/martinmoene/span-lite/archive/${PKG_REV['span-lite']}.tar.gz | tar -xz && \
341cd span-lite-* && \
342mkdir build && \
343cd build && \
344cmake ${CMAKE_FLAGS[@]} -DSPAN_LITE_OPT_BUILD_TESTS=OFF .. && \
345make -j$(nproc) && \
346make install
347
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800348FROM openbmc-base as openbmc-linux-headers
349RUN curl -L https://github.com/openbmc/linux/archive/${PKG_REV['linux-headers']}.tar.gz | tar -xz && \
350cd linux-* && \
351make -j$(nproc) defconfig && \
352make INSTALL_HDR_PATH=/usr/local headers_install
353
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700354FROM openbmc-base as openbmc-boost
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700355RUN 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 -0700356cd boost_*/ && \
357./bootstrap.sh --prefix=${PREFIX} --with-libraries=context,coroutine && \
358./b2 && ./b2 install --prefix=${PREFIX}
James Feist878df5c2018-07-26 14:54:28 -0700359
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700360FROM openbmc-base as openbmc-tinyxml2
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700361RUN curl -L https://github.com/leethomason/tinyxml2/archive/${PKG_REV['tinyxml2']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700362cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700363mkdir build && \
364cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700365cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700366make -j$(nproc) && \
367make install
368
Brad Bishop0204bec2019-11-07 16:13:54 -0500369FROM openbmc-base as openbmc-valijson
370RUN curl -L https://github.com/tristanpenman/valijson/archive/${PKG_REV['valijson']}.tar.gz | tar -xz && \
371cd valijson-* && \
372mkdir build && \
373cd build && \
374cmake ${CMAKE_FLAGS[@]} -DINSTALL_HEADERS=1 -DBUILD_TESTS=0 .. && \
375make -j$(nproc) && \
376make install
377
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700378FROM openbmc-base as openbmc-libvncserver
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700379RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700380cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700381mkdir build && \
382cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700383cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700384make -j$(nproc) && \
385make install
386
William A. Kennington III1b873212019-03-21 19:02:42 -0700387FROM openbmc-base as openbmc-stdplus
William A. Kennington III05e7b5f2020-06-03 18:45:50 -0700388COPY --from=openbmc-fmt ${PREFIX} ${PREFIX}
389COPY --from=openbmc-span-lite ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930390RUN 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 -0700391cd stdplus-* && \
William A. Kennington III248cdc62020-06-03 18:50:55 -0700392meson build ${MESON_FLAGS[@]} -Dtests=disabled -Dexamples=false && \
William A. Kennington III1b873212019-03-21 19:02:42 -0700393ninja -C build && \
394ninja -C build install
395
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700396FROM openbmc-base as openbmc-sdbusplus
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930397RUN 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 -0700398cd sdbusplus-* && \
William A. Kennington IIIde834b62020-06-03 18:55:33 -0700399cd tools && ./setup.py install --root=/ --prefix=${PREFIX} && \
William A. Kennington III75602172020-06-04 13:45:33 -0700400cd .. && meson build ${MESON_FLAGS[@]} -Dtests=disabled -Dexamples=disabled && \
Patrick Williams9e32de22020-06-01 07:31:17 -0500401ninja -C build && \
William A. Kennington IIIde834b62020-06-03 18:55:33 -0700402ninja -C build install
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030403
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700404FROM openbmc-base as openbmc-sdeventplus
William A. Kennington III4ca0e7b2019-03-27 03:33:18 -0700405COPY --from=openbmc-function2 ${PREFIX} ${PREFIX}
William A. Kennington IIIa472fda2019-03-21 21:06:38 -0700406COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930407RUN 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 -0700408cd sdeventplus-* && \
William A. Kennington III248cdc62020-06-03 18:50:55 -0700409meson build ${MESON_FLAGS[@]} -Dtests=disabled -Dexamples=false && \
William A. Kennington III2b639f32019-03-21 19:00:38 -0700410ninja -C build && \
411ninja -C build install
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700412
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700413FROM openbmc-base as openbmc-gpioplus
William A. Kennington III1aed1252019-01-15 18:18:03 -0800414COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930415RUN 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 -0700416cd gpioplus-* && \
William A. Kennington III248cdc62020-06-03 18:50:55 -0700417meson build ${MESON_FLAGS[@]} -Dtests=disabled -Dexamples=false && \
William A. Kennington III83648312019-03-27 19:53:18 -0700418ninja -C build && \
419ninja -C build install
Patrick Venture22329962018-09-14 10:23:04 -0700420
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700421FROM openbmc-base as openbmc-phosphor-dbus-interfaces
422COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930423RUN 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 -0700424cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030425./bootstrap.sh && \
SunnySrivastava1984e9ecc1a2020-06-03 08:46:42 -0500426./configure ${CONFIGURE_FLAGS[@]} --enable-openpower-dbus-interfaces --enable-ibm-dbus-interfaces && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030427make -j$(nproc) && \
428make install
429
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700430FROM openbmc-base as openbmc-openpower-dbus-interfaces
431COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
Andrew Geisslerf876a3c2019-07-23 12:41:51 -0500432COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930433RUN 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 -0700434cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030435./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700436./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030437make -j$(nproc) && \
438make install
439
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700440FROM openbmc-base as openbmc-phosphor-logging
441COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
442COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4f47a5c2019-07-16 14:57:57 -0700443COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700444COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinler1d156512018-10-29 09:56:57 -0500445COPY --from=openbmc-openpower-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinlerfd51e812020-01-14 13:31:22 -0600446COPY --from=openbmc-fifo_map ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930447RUN 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 -0700448cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030449./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700450./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030451make -j$(nproc) && \
452make install
453
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700454FROM openbmc-base as openbmc-phosphor-objmgr
455COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
456COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
457COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
458COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930459RUN 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 -0700460cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030461./bootstrap.sh && \
Matt Spinlerf3e08ee2019-04-10 11:13:33 -0500462./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030463make -j$(nproc) && \
464make install
465
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930466FROM openbmc-base as open-power-pdbg
467RUN curl -L https://github.com/open-power/pdbg/archive/${PKG_REV['open-power/pdbg']}.tar.gz | tar -xz && \
468cd pdbg-* && \
469./bootstrap.sh && \
470./configure ${CONFIGURE_FLAGS[@]} && \
471make -j$(nproc) && \
472make install
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700473
Matt Spinlerbd1ff812019-11-14 10:00:04 -0600474FROM openbmc-base as openbmc-pldm
475COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
476COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
477COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
478COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
479COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
480COPY --from=openbmc-json ${PREFIX} ${PREFIX}
481COPY --from=openbmc-CLI11 ${PREFIX} ${PREFIX}
482RUN curl -L https://github.com/openbmc/pldm/archive/${PKG_REV['openbmc/pldm']}.tar.gz | tar -xz && \
483cd pldm-* && \
William A. Kennington III248cdc62020-06-03 18:50:55 -0700484meson build ${MESON_FLAGS[@]} -Dtests=disabled && \
Matt Spinlerbd1ff812019-11-14 10:00:04 -0600485ninja -C build && \
486ninja -C build install
487
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700488# Build the final output image
489FROM openbmc-base
490${COPY_CMDS}
491
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700492# Some of our infrastructure still relies on the presence of this file
493# even though it is no longer needed to rebuild the docker environment
494# NOTE: The file is sorted to ensure the ordering is stable.
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800495RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /tmp/depcache
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700496
497# Final configuration for the workspace
498RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington IIIc1e93cb2019-07-16 15:40:25 -0700499RUN mkdir -p "$(dirname "${HOME}")"
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700500RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
William A. Kennington III3bba8fb2018-12-13 15:07:49 -0800501RUN sed -i '1iDefaults umask=000' /etc/sudoers
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800502RUN echo "${USER} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700503
Matthew Barthb4aea672016-11-10 14:59:52 -0600504RUN /bin/bash
505EOF
506)
507fi
508################################# docker img # #################################
509
Lei YU139929a2020-05-26 18:48:05 +0800510http_proxy=${http_proxy:-}
511proxy_args=""
512if [[ -n "${http_proxy}" ]]; then
513 proxy_args="--build-arg http_proxy=${http_proxy} --build-arg https_proxy=${http_proxy}"
514fi
515
Matthew Barthb4aea672016-11-10 14:59:52 -0600516# Build above image
Lei YU139929a2020-05-26 18:48:05 +0800517docker build ${proxy_args} --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"