blob: bea8030f70d4d04f87357512b326eb825a8c1b42 [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
Andrew Jeffery8a273be2019-08-07 11:09:46 +093060 open-power/pdbg
Matt Spinlerbd1ff812019-11-14 10:00:04 -060061 openbmc/pldm
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070062)
William A. Kennington III32deed82018-09-17 20:48:23 -070063
64# Generate a list of depcache entries
65# We want to do this in parallel since the package list is growing
66# and the network lookup is low overhead but decently high latency.
67# This doesn't worry about producing a stable DEPCACHE_FILE, that is
68# done by readers who need a stable ordering.
69generate_depcache_entry() {
70 local package="$1"
71
72 local tip
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060073 # Need to continue if branch not found, hence || true at end
Andrew Jefferyb4296f52019-08-07 11:03:09 +093074 tip=$(git ls-remote --heads "https://github.com/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060075 grep "refs/heads/$BRANCH" | awk '{ print $1 }' || true)
76
77 # If specific branch is not found then try master
Patrick Venture530a8022019-02-13 12:16:56 -080078 if [[ ! -n "$tip" ]]; then
Andrew Jefferyb4296f52019-08-07 11:03:09 +093079 tip=$(git ls-remote --heads "https://github.com/${package}" |
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060080 grep "refs/heads/master" | awk '{ print $1 }')
81 fi
William A. Kennington III32deed82018-09-17 20:48:23 -070082
83 # Lock the file to avoid interlaced writes
84 exec 3>> "$DEPCACHE_FILE"
Andrew Geisslerdda45132019-09-01 21:03:04 -050085 flock 3
William A. Kennington III32deed82018-09-17 20:48:23 -070086 echo "$package:$tip" >&3
87 exec 3>&-
88}
William A. Kennington III4815f702018-10-03 19:27:42 -070089for package in "${HEAD_PKGS[@]}"; do
William A. Kennington III32deed82018-09-17 20:48:23 -070090 generate_depcache_entry "$package" &
Andrew Jeffery221eeda2018-03-08 13:32:43 +103091done
William A. Kennington III32deed82018-09-17 20:48:23 -070092wait
Andrew Jeffery221eeda2018-03-08 13:32:43 +103093
William A. Kennington III4815f702018-10-03 19:27:42 -070094# A list of package versions we are building
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070095# Start off by listing the stating versions of third-party sources
96declare -A PKG_REV=(
Andrew Geissler62771512020-05-28 15:39:48 -050097 [boost]=1.73.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070098 [cereal]=v1.2.2
William A. Kennington III9afb7662020-06-03 19:04:19 -070099 [catch2]=v2.12.2
William A. Kennington III78655e52020-02-25 14:07:30 -0800100 [CLI11]=v1.9.0
William A. Kennington III9afb7662020-06-03 19:04:19 -0700101 [fmt]=6.2.1
William A. Kennington III6135ba32020-02-25 14:10:11 -0800102 # Snapshot from 2020-01-03
103 [function2]=3a0746bf5f601dfed05330aefcb6854354fce07d
William A. Kennington III171151f2020-02-25 14:10:27 -0800104 # Snapshot from 2020-02-13
105 [googletest]=23b2a3b1cf803999fb38175f6e9e038a4495c8a5
Andrew Geissler1976d392020-05-20 13:09:33 -0500106 # TODO - Move back to released json once gcc10 fix is available
107 # [json]=v3.7.3
108 # Snapshot from 2020-05-19
109 [json]=5cfa8a586ee1a656190491c1de20a82fb40fab5d
William A. Kennington III0be795e2019-06-26 12:12:33 -0700110 # Snapshot from 2019-05-24
111 [lcov]=75fbae1cfc5027f818a0bb865bf6f96fab3202da
Patrick Venture19b811b2019-05-01 13:55:41 -0700112 # dev-5.0 2019-05-03
113 [linux-headers]=8bf6567e77f7aa68975b7c9c6d044bba690bf327
Jae Hyun Yood34cf322019-09-09 11:50:18 -0700114 # Snapshot from 2019-09-03
115 [libvncserver]=1354f7f1bb6962dab209eddb9d6aac1f03408110
William A. Kennington III9c900d02020-03-13 01:33:02 -0700116 [span-lite]=v0.7.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700117 # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
118 [tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
Brad Bishop0204bec2019-11-07 16:13:54 -0500119 # version from meta-openembedded/meta-oe/recipes-devtools/valijson/valijson_git.bb
120 [valijson]=c2f22fddf599d04dc33fcd7ed257c698a05345d9
Matt Spinlerfd51e812020-01-14 13:31:22 -0600121 # version from meta-openembedded/meta-oe/recipes-devtools/nlohmann-fifo/nlohmann-fifo_git.bb
122 [fifo_map]=0dfbf5dacbb15a32c43f912a7e66a54aae39d0f9
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700123)
William A. Kennington III4815f702018-10-03 19:27:42 -0700124
125# Turn the depcache into a dictionary so we can reference the HEAD of each repo
126for line in $(cat "$DEPCACHE_FILE"); do
127 linearr=($(echo "$line" | tr ':' ' '))
128 PKG_REV["${linearr[0]}"]="${linearr[1]}"
129done
130
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700131# Define common flags used for builds
132PREFIX="/usr/local"
133CONFIGURE_FLAGS=(
134 "--prefix=${PREFIX}"
135)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700136CMAKE_FLAGS=(
137 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
138 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700139 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -0700140)
William A. Kennington III248cdc62020-06-03 18:50:55 -0700141MESON_FLAGS=(
William A. Kennington III49400512020-06-03 18:51:42 -0700142 "--wrap-mode=nodownload"
William A. Kennington III248cdc62020-06-03 18:50:55 -0700143 "-Dprefix=${PREFIX}"
144)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700145
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930146stagename()
147{
148 local cooked="$1"
149
150 if ! echo "$cooked" | grep -q '/'
151 then
152 cooked=openbmc-"$cooked"
153 fi
154 echo "$cooked" | tr '/' '-'
155}
156
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700157# Build the commands needed to compose our final image
158COPY_CMDS=""
159# We must sort the packages, otherwise we might produce an unstable
160# docker file and rebuild the image unnecessarily
161for pkg in $(echo "${!PKG_REV[@]}" | tr ' ' '\n' | LC_COLLATE=C sort -s); do
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930162 COPY_CMDS+="COPY --from=$(stagename ${pkg}) ${PREFIX} ${PREFIX}"$'\n'
William A. Kennington III36f26222018-11-01 13:40:18 -0700163 # Workaround for upstream docker bug and multiple COPY cmds
164 # https://github.com/moby/moby/issues/37965
165 COPY_CMDS+="RUN true"$'\n'
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700166done
167
Matthew Barthb4aea672016-11-10 14:59:52 -0600168################################# docker img # #################################
169# Create docker image that can run package unit tests
170if [[ "${DISTRO}" == "ubuntu"* ]]; then
Lei YU139929a2020-05-26 18:48:05 +0800171
172MIRROR=""
173if [[ -n "${UBUNTU_MIRROR}" ]]; then
174 MIRROR="RUN echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME) main restricted universe multiverse\" > /etc/apt/sources.list && \
175 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-updates main restricted universe multiverse\" >> /etc/apt/sources.list && \
176 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-security main restricted universe multiverse\" >> /etc/apt/sources.list && \
177 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-proposed main restricted universe multiverse\" >> /etc/apt/sources.list && \
178 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-backports main restricted universe multiverse\" >> /etc/apt/sources.list"
179
180fi
181
Matthew Barthb4aea672016-11-10 14:59:52 -0600182Dockerfile=$(cat << EOF
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700183FROM ${DOCKER_BASE}${DISTRO} as openbmc-base
Matthew Barthb4aea672016-11-10 14:59:52 -0600184
Lei YU139929a2020-05-26 18:48:05 +0800185${MIRROR}
186
Matthew Barthb4aea672016-11-10 14:59:52 -0600187ENV DEBIAN_FRONTEND noninteractive
188
Andrew Geissler595739b2020-05-19 14:21:49 -0500189ENV PYTHONPATH "/usr/local/lib/python3.8/site-packages/"
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500190
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700191# We need the keys to be imported for dbgsym repos
192# New releases have a package, older ones fall back to manual fetching
193# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
194RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
195 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
196
197# Parse the current repo list into a debug repo list
198RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
199
200# Remove non-existent debug repos
201RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
202
203RUN cat /etc/apt/sources.list.d/debug.list
204
William A. Kennington III8b9f4e82020-05-26 22:41:35 -0700205RUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \
Andrew Geissler595739b2020-05-19 14:21:49 -0500206 gcc-10 \
207 g++-10 \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700208 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600209 libc6-dev \
210 libtool \
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800211 bison \
212 flex \
Matthew Barthb4aea672016-11-10 14:59:52 -0600213 cmake \
Saqib Khan362ca852017-03-21 10:48:46 -0500214 python3 \
215 python3-dev\
216 python3-yaml \
217 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930218 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500219 python3-setuptools \
Andrew Jefferybda43ce2020-03-13 12:19:49 +1030220 python3-git \
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500221 python3-socks \
Matthew Barthb4aea672016-11-10 14:59:52 -0600222 pkg-config \
223 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700224 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600225 libsystemd-dev \
Brad Bishopa1ee2652019-03-29 16:42:06 -0400226 systemd \
Matthew Barth92f93872017-02-08 11:19:27 -0600227 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500228 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700229 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500230 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700231 libpng-dev \
William A. Kennington IIIbaeb4f52018-12-06 14:57:13 -0800232 ninja-build \
Matthew Barthb4aea672016-11-10 14:59:52 -0600233 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700234 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600235 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500236 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800237 iputils-ping \
Patrick Williams80d07282020-05-20 10:56:22 -0500238 clang-10 \
239 clang-format-10 \
240 clang-tidy-10 \
241 clang-tools-10 \
Patrick Williams01ced282020-07-17 15:10:15 -0500242 shellcheck \
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-phosphor-logging
431COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
432COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4f47a5c2019-07-16 14:57:57 -0700433COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700434COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinlerfd51e812020-01-14 13:31:22 -0600435COPY --from=openbmc-fifo_map ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930436RUN 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 -0700437cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030438./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700439./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030440make -j$(nproc) && \
441make install
442
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700443FROM openbmc-base as openbmc-phosphor-objmgr
444COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
445COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
446COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
447COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930448RUN 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 -0700449cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030450./bootstrap.sh && \
Matt Spinlerf3e08ee2019-04-10 11:13:33 -0500451./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030452make -j$(nproc) && \
453make install
454
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930455FROM openbmc-base as open-power-pdbg
456RUN curl -L https://github.com/open-power/pdbg/archive/${PKG_REV['open-power/pdbg']}.tar.gz | tar -xz && \
457cd pdbg-* && \
458./bootstrap.sh && \
459./configure ${CONFIGURE_FLAGS[@]} && \
460make -j$(nproc) && \
461make install
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700462
Matt Spinlerbd1ff812019-11-14 10:00:04 -0600463FROM openbmc-base as openbmc-pldm
464COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
465COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
466COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
467COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
468COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
469COPY --from=openbmc-json ${PREFIX} ${PREFIX}
470COPY --from=openbmc-CLI11 ${PREFIX} ${PREFIX}
471RUN curl -L https://github.com/openbmc/pldm/archive/${PKG_REV['openbmc/pldm']}.tar.gz | tar -xz && \
472cd pldm-* && \
William A. Kennington III248cdc62020-06-03 18:50:55 -0700473meson build ${MESON_FLAGS[@]} -Dtests=disabled && \
Matt Spinlerbd1ff812019-11-14 10:00:04 -0600474ninja -C build && \
475ninja -C build install
476
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700477# Build the final output image
478FROM openbmc-base
479${COPY_CMDS}
480
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700481# Some of our infrastructure still relies on the presence of this file
482# even though it is no longer needed to rebuild the docker environment
483# NOTE: The file is sorted to ensure the ordering is stable.
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800484RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /tmp/depcache
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700485
486# Final configuration for the workspace
487RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington IIIc1e93cb2019-07-16 15:40:25 -0700488RUN mkdir -p "$(dirname "${HOME}")"
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700489RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
William A. Kennington III3bba8fb2018-12-13 15:07:49 -0800490RUN sed -i '1iDefaults umask=000' /etc/sudoers
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800491RUN echo "${USER} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700492
Matthew Barthb4aea672016-11-10 14:59:52 -0600493RUN /bin/bash
494EOF
495)
496fi
497################################# docker img # #################################
498
Lei YU139929a2020-05-26 18:48:05 +0800499http_proxy=${http_proxy:-}
500proxy_args=""
501if [[ -n "${http_proxy}" ]]; then
502 proxy_args="--build-arg http_proxy=${http_proxy} --build-arg https_proxy=${http_proxy}"
503fi
504
Matthew Barthb4aea672016-11-10 14:59:52 -0600505# Build above image
Lei YU139929a2020-05-26 18:48:05 +0800506docker build ${proxy_args} --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"