blob: d10857fd91da6878ffa857483c9516d56b6d01ee [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 \
Gunnar Mills6b25a032019-07-11 12:16:35 -0500242 npm \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530243 iproute2 \
244 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700245 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530246 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700247 libsnmp-dev \
248 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700249 valgrind-dbg \
James Feist878df5c2018-07-26 14:54:28 -0700250 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530251 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700252 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500253 wget \
Patrick Venturedef31a82018-12-10 13:24:46 -0800254 libldap2-dev \
255 libprotobuf-dev \
William A. Kennington III0be795e2019-06-26 12:12:33 -0700256 libperlio-gzip-perl \
257 libjson-perl \
James Feistcf8fddb2019-05-30 15:30:42 -0700258 protobuf-compiler \
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930259 libgpiod-dev \
Andrew Geissler938d21e2019-09-01 21:09:33 -0500260 device-tree-compiler \
Benjamin Fair716780a2020-06-05 17:57:14 -0700261 cppcheck \
Asmitha Karunanithid0810812020-06-20 01:54:14 -0500262 libpciaccess-dev \
263 libmimetic-dev
Matthew Barthb4aea672016-11-10 14:59:52 -0600264
Andrew Geissler595739b2020-05-19 14:21:49 -0500265RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 1000 \
266 --slave /usr/bin/g++ g++ /usr/bin/g++-10 \
267 --slave /usr/bin/gcov gcov /usr/bin/gcov-10 \
268 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-10 \
269 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-10
William A. Kennington III0232a252019-06-26 12:13:47 -0700270
Patrick Williamsf7c2c5f2020-02-06 10:51:04 -0600271RUN pip3 install inflection
Andrew Geissler9e5b11f2020-04-01 12:14:29 -0500272RUN pip3 install pycodestyle
Shawn McCarneya49dbde2020-03-05 08:52:05 -0600273RUN pip3 install jsonschema
Patrick Williams2c880fe2020-06-15 13:00:45 -0500274RUN pip3 install meson==0.54.3
Matthew Bartha2366d92017-01-31 09:46:20 -0600275
William A. Kennington III1a651822019-01-16 14:48:52 -0800276FROM openbmc-base as openbmc-lcov
277RUN curl -L https://github.com/linux-test-project/lcov/archive/${PKG_REV['lcov']}.tar.gz | tar -xz && \
278cd lcov-* && \
279make -j$(nproc) && \
280make install
281
William A. Kennington III8ff1e0f2019-03-27 03:19:51 -0700282FROM openbmc-base as openbmc-function2
William A. Kennington IIIf6884642019-03-29 15:19:20 -0700283RUN mkdir ${PREFIX}/include/function2 && \
284curl -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 -0700285
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700286FROM openbmc-base as openbmc-googletest
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700287RUN curl -L https://github.com/google/googletest/archive/${PKG_REV['googletest']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700288cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700289mkdir build && \
290cd build && \
William A. Kennington III3eaf5922018-12-11 18:16:09 -0800291cmake ${CMAKE_FLAGS[@]} -DTHREADS_PREFER_PTHREAD_FLAG=ON .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700292make -j$(nproc) && \
293make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600294
William A. Kennington III1e4d5332019-10-18 12:24:18 -0700295FROM openbmc-base as openbmc-catch2
296RUN curl -L https://github.com/catchorg/Catch2/archive/${PKG_REV['catch2']}.tar.gz | tar -xz && \
297cd Catch2-* && \
298mkdir build && \
299cd build && \
William A. Kennington III84a19a62020-02-25 14:06:57 -0800300cmake ${CMAKE_FLAGS[@]} -DBUILD_TESTING=OFF -DCATCH_INSTALL_DOCS=OFF .. && \
William A. Kennington III1e4d5332019-10-18 12:24:18 -0700301make -j$(nproc) && \
302make install
303
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700304FROM openbmc-base as openbmc-cereal
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700305RUN curl -L https://github.com/USCiLab/cereal/archive/${PKG_REV['cereal']}.tar.gz | tar -xz && \
306cp -a cereal-*/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500307
William A. Kennington III1962d572018-09-12 22:38:15 -0700308FROM openbmc-base as openbmc-CLI11
309RUN curl -L https://github.com/CLIUtils/CLI11/archive/${PKG_REV['CLI11']}.tar.gz | tar -xz && \
310cd CLI11-* && \
311mkdir build && \
312cd build && \
William A. Kennington III78655e52020-02-25 14:07:30 -0800313cmake ${CMAKE_FLAGS[@]} -DCLI11_BUILD_DOCS=OFF -DBUILD_TESTING=OFF -DCLI11_BUILD_EXAMPLES=OFF .. && \
William A. Kennington III1962d572018-09-12 22:38:15 -0700314make -j$(nproc) && \
315make install
316
William A. Kennington III6b50d702019-07-09 16:44:05 -0700317FROM openbmc-base as openbmc-fmt
318RUN curl -L https://github.com/fmtlib/fmt/archive/${PKG_REV['fmt']}.tar.gz | tar -xz && \
319cd fmt-* && \
320mkdir build && \
321cd build && \
322cmake ${CMAKE_FLAGS[@]} -DFMT_DOC=OFF -DFMT_TEST=OFF .. && \
323make -j$(nproc) && \
324make install
325
Andrew Geissler1976d392020-05-20 13:09:33 -0500326# nlohmann json provides all of its function in a single header file
327# TODO - Go back to using a release once gcc 10 fixes are in
328# 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 -0700329FROM openbmc-base as openbmc-json
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700330RUN mkdir ${PREFIX}/include/nlohmann/ && \
Andrew Geissler1976d392020-05-20 13:09:33 -0500331curl -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 -0500332ln -s nlohmann/json.hpp ${PREFIX}/include/json.hpp
David Cobbleye99c07a2017-12-22 11:39:01 -0800333
Matt Spinlerfd51e812020-01-14 13:31:22 -0600334FROM openbmc-base as openbmc-fifo_map
335RUN curl -L https://github.com/nlohmann/fifo_map/archive/${PKG_REV['fifo_map']}.tar.gz | tar -xz && \
336cd fifo_map-*/src && cp fifo_map.hpp ${PREFIX}/include/
337
William A. Kennington IIIe1d68692019-10-18 12:26:12 -0700338FROM openbmc-base as openbmc-span-lite
339RUN curl -L https://github.com/martinmoene/span-lite/archive/${PKG_REV['span-lite']}.tar.gz | tar -xz && \
340cd span-lite-* && \
341mkdir build && \
342cd build && \
343cmake ${CMAKE_FLAGS[@]} -DSPAN_LITE_OPT_BUILD_TESTS=OFF .. && \
344make -j$(nproc) && \
345make install
346
William A. Kennington III2d3eda02019-02-12 20:42:09 -0800347FROM openbmc-base as openbmc-linux-headers
348RUN curl -L https://github.com/openbmc/linux/archive/${PKG_REV['linux-headers']}.tar.gz | tar -xz && \
349cd linux-* && \
350make -j$(nproc) defconfig && \
351make INSTALL_HDR_PATH=/usr/local headers_install
352
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700353FROM openbmc-base as openbmc-boost
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700354RUN 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 -0700355cd boost_*/ && \
356./bootstrap.sh --prefix=${PREFIX} --with-libraries=context,coroutine && \
357./b2 && ./b2 install --prefix=${PREFIX}
James Feist878df5c2018-07-26 14:54:28 -0700358
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700359FROM openbmc-base as openbmc-tinyxml2
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700360RUN curl -L https://github.com/leethomason/tinyxml2/archive/${PKG_REV['tinyxml2']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700361cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700362mkdir build && \
363cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700364cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700365make -j$(nproc) && \
366make install
367
Brad Bishop0204bec2019-11-07 16:13:54 -0500368FROM openbmc-base as openbmc-valijson
369RUN curl -L https://github.com/tristanpenman/valijson/archive/${PKG_REV['valijson']}.tar.gz | tar -xz && \
370cd valijson-* && \
371mkdir build && \
372cd build && \
373cmake ${CMAKE_FLAGS[@]} -DINSTALL_HEADERS=1 -DBUILD_TESTS=0 .. && \
374make -j$(nproc) && \
375make install
376
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700377FROM openbmc-base as openbmc-libvncserver
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700378RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700379cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700380mkdir build && \
381cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700382cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700383make -j$(nproc) && \
384make install
385
William A. Kennington III1b873212019-03-21 19:02:42 -0700386FROM openbmc-base as openbmc-stdplus
William A. Kennington III05e7b5f2020-06-03 18:45:50 -0700387COPY --from=openbmc-fmt ${PREFIX} ${PREFIX}
388COPY --from=openbmc-span-lite ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930389RUN 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 -0700390cd stdplus-* && \
William A. Kennington III248cdc62020-06-03 18:50:55 -0700391meson build ${MESON_FLAGS[@]} -Dtests=disabled -Dexamples=false && \
William A. Kennington III1b873212019-03-21 19:02:42 -0700392ninja -C build && \
393ninja -C build install
394
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700395FROM openbmc-base as openbmc-sdbusplus
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930396RUN 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 -0700397cd sdbusplus-* && \
William A. Kennington IIIde834b62020-06-03 18:55:33 -0700398cd tools && ./setup.py install --root=/ --prefix=${PREFIX} && \
William A. Kennington III75602172020-06-04 13:45:33 -0700399cd .. && meson build ${MESON_FLAGS[@]} -Dtests=disabled -Dexamples=disabled && \
Patrick Williams9e32de22020-06-01 07:31:17 -0500400ninja -C build && \
William A. Kennington IIIde834b62020-06-03 18:55:33 -0700401ninja -C build install
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030402
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700403FROM openbmc-base as openbmc-sdeventplus
William A. Kennington III4ca0e7b2019-03-27 03:33:18 -0700404COPY --from=openbmc-function2 ${PREFIX} ${PREFIX}
William A. Kennington IIIa472fda2019-03-21 21:06:38 -0700405COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930406RUN 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 -0700407cd sdeventplus-* && \
William A. Kennington III248cdc62020-06-03 18:50:55 -0700408meson build ${MESON_FLAGS[@]} -Dtests=disabled -Dexamples=false && \
William A. Kennington III2b639f32019-03-21 19:00:38 -0700409ninja -C build && \
410ninja -C build install
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700411
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700412FROM openbmc-base as openbmc-gpioplus
William A. Kennington III1aed1252019-01-15 18:18:03 -0800413COPY --from=openbmc-stdplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930414RUN 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 -0700415cd gpioplus-* && \
William A. Kennington III248cdc62020-06-03 18:50:55 -0700416meson build ${MESON_FLAGS[@]} -Dtests=disabled -Dexamples=false && \
William A. Kennington III83648312019-03-27 19:53:18 -0700417ninja -C build && \
418ninja -C build install
Patrick Venture22329962018-09-14 10:23:04 -0700419
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700420FROM openbmc-base as openbmc-phosphor-dbus-interfaces
421COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930422RUN 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 -0700423cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030424./bootstrap.sh && \
SunnySrivastava1984e9ecc1a2020-06-03 08:46:42 -0500425./configure ${CONFIGURE_FLAGS[@]} --enable-openpower-dbus-interfaces --enable-ibm-dbus-interfaces && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030426make -j$(nproc) && \
427make install
428
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700429FROM openbmc-base as openbmc-phosphor-logging
430COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
431COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4f47a5c2019-07-16 14:57:57 -0700432COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700433COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinlerfd51e812020-01-14 13:31:22 -0600434COPY --from=openbmc-fifo_map ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930435RUN 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 -0700436cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030437./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700438./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030439make -j$(nproc) && \
440make install
441
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700442FROM openbmc-base as openbmc-phosphor-objmgr
443COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
444COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
445COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
446COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
Andrew Jefferyb4296f52019-08-07 11:03:09 +0930447RUN 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 -0700448cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030449./bootstrap.sh && \
Matt Spinlerf3e08ee2019-04-10 11:13:33 -0500450./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030451make -j$(nproc) && \
452make install
453
Andrew Jeffery8a273be2019-08-07 11:09:46 +0930454FROM openbmc-base as open-power-pdbg
455RUN curl -L https://github.com/open-power/pdbg/archive/${PKG_REV['open-power/pdbg']}.tar.gz | tar -xz && \
456cd pdbg-* && \
457./bootstrap.sh && \
458./configure ${CONFIGURE_FLAGS[@]} && \
459make -j$(nproc) && \
460make install
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700461
Matt Spinlerbd1ff812019-11-14 10:00:04 -0600462FROM openbmc-base as openbmc-pldm
463COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
464COPY --from=openbmc-sdeventplus ${PREFIX} ${PREFIX}
465COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
466COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
467COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
468COPY --from=openbmc-json ${PREFIX} ${PREFIX}
469COPY --from=openbmc-CLI11 ${PREFIX} ${PREFIX}
470RUN curl -L https://github.com/openbmc/pldm/archive/${PKG_REV['openbmc/pldm']}.tar.gz | tar -xz && \
471cd pldm-* && \
William A. Kennington III248cdc62020-06-03 18:50:55 -0700472meson build ${MESON_FLAGS[@]} -Dtests=disabled && \
Matt Spinlerbd1ff812019-11-14 10:00:04 -0600473ninja -C build && \
474ninja -C build install
475
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700476# Build the final output image
477FROM openbmc-base
478${COPY_CMDS}
479
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700480# Some of our infrastructure still relies on the presence of this file
481# even though it is no longer needed to rebuild the docker environment
482# NOTE: The file is sorted to ensure the ordering is stable.
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800483RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /tmp/depcache
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700484
485# Final configuration for the workspace
486RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
William A. Kennington IIIc1e93cb2019-07-16 15:40:25 -0700487RUN mkdir -p "$(dirname "${HOME}")"
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700488RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
William A. Kennington III3bba8fb2018-12-13 15:07:49 -0800489RUN sed -i '1iDefaults umask=000' /etc/sudoers
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800490RUN echo "${USER} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700491
Matthew Barthb4aea672016-11-10 14:59:52 -0600492RUN /bin/bash
493EOF
494)
495fi
496################################# docker img # #################################
497
Lei YU139929a2020-05-26 18:48:05 +0800498http_proxy=${http_proxy:-}
499proxy_args=""
500if [[ -n "${http_proxy}" ]]; then
501 proxy_args="--build-arg http_proxy=${http_proxy} --build-arg https_proxy=${http_proxy}"
502fi
503
Matthew Barthb4aea672016-11-10 14:59:52 -0600504# Build above image
Lei YU139929a2020-05-26 18:48:05 +0800505docker build ${proxy_args} --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"