blob: 6ec337cbc2ae6466ff82c3d97672e33aa64297de [file] [log] [blame]
Alanny Lopez56fc36a2017-07-27 13:55:44 -05001#!/bin/bash
Alanny Lopezb0a12dd2017-04-24 16:21:47 -05002###############################################################################
Chris Smart02651712015-11-11 11:09:00 +11003#
Alanny Lopezb0a12dd2017-04-24 16:21:47 -05004# This build script is for running the OpenBMC builds as containers with the
5# option of launching the containers with Docker or Kubernetes.
Alanny Lopez3fbaa512017-04-24 15:46:52 -05006#
Alanny Lopezb0a12dd2017-04-24 16:21:47 -05007###############################################################################
8#
Alanny Lopeze08e8702018-02-24 18:07:13 -06009# Script Variables:
10# build_scripts_dir The path of the openbmc-build-scripts directory.
11# Default: The directory containing this script
12# http_proxy The HTTP address of the proxy server to connect to.
13# Default: "", proxy is not setup if this is not set
14# WORKSPACE Path of the workspace directory where some intermediate
15# files and the images will be saved to.
16# Default: "~/{RandomNumber}"
Alanny Lopezb0a12dd2017-04-24 16:21:47 -050017#
Alanny Lopeze08e8702018-02-24 18:07:13 -060018# Docker Image Build Variables:
19# BITBAKE_OPTS Set to "-c populate_sdk" or whatever other bitbake options
20# you'd like to pass into the build.
21# Default: "", no options set
22# builddir Path where the actual bitbake build occurs in inside the
23# container, path cannot be located on network storage.
24# Default: "/tmp/openbmc"
25# distro The distro used as the base image for the build image:
26# fedora|ubuntu
27# Default: "ubuntu"
28# imgname The name given to the target build's docker image.
29# Default: "openbmc/${distro}:${imgtag}-${target}-${ARCH}"
30# imgtag The base docker image distro tag:
31# ubuntu: latest|16.04|14.04|trusty|xenial
32# fedora: 23|24|25
33# Default: "latest"
34# target The target we aim to build:
35# barreleye|evb-ast2500|firestone|garrison|palmetto|qemu
36# romulus|witherspoon|zaius
37# Default: "qemu"
Alanny Lopez723fea62017-09-12 11:22:17 -050038#
Alanny Lopeze08e8702018-02-24 18:07:13 -060039# Deployment Variables:
40# extraction Path where the ombcdir contents will be copied out to when
41# the build completes.
42# Default: "${obmcext}/build/tmp"
43# launch ""|job|pod
44# Can be left blank to launch the container via Docker
45# Job lets you keep a copy of job and container logs on the
46# api, can be useful if not using Jenkins as you can run the
47# job again via the api without needing this script.
48# Pod launches a container which runs to completion without
49# saving anything to the api when it completes.
50# obmcext Path of the OpenBMC repo directory used as a reference
51# for the build inside the container.
52# Default: "${WORKSPACE}/openbmc"
53# sscdir Path to use as the BitBake shared-state cache directory.
54# Default: "/home/${USER}"
Alanny Lopezb0a12dd2017-04-24 16:21:47 -050055#
56###############################################################################
Alanny Lopeze08e8702018-02-24 18:07:13 -060057build_scripts_dir=${build_scripts_dir:-"$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"}
Chris Smart02651712015-11-11 11:09:00 +110058
Joel Stanley4b8b2392016-02-12 15:44:57 +103059# Trace bash processing. Set -e so when a step fails, we fail the build
Joel Stanley38c9d142016-02-16 12:31:55 +103060set -xeo pipefail
Chris Smart02651712015-11-11 11:09:00 +110061
62# Default variables
63target=${target:-qemu}
64distro=${distro:-ubuntu}
Alanny Lopezccc650e2017-04-24 15:14:20 -050065imgtag=${imgtag:-latest}
Alanny Lopez723fea62017-09-12 11:22:17 -050066builddir=${builddir:-/tmp/openbmc}
Alanny Lopez97a79502017-04-24 16:19:25 -050067sscdir=${sscdir:-${HOME}}
Chris Smart02651712015-11-11 11:09:00 +110068WORKSPACE=${WORKSPACE:-${HOME}/${RANDOM}${RANDOM}}
Alanny Lopez7ec6d4d2017-06-09 09:43:01 -050069obmcext=${obmcext:-${WORKSPACE}/openbmc}
Alanny Lopez723fea62017-09-12 11:22:17 -050070extraction=${extraction:-${obmcext}/build/tmp}
Alanny Lopez3fbaa512017-04-24 15:46:52 -050071launch=${launch:-}
Chris Smart02651712015-11-11 11:09:00 +110072http_proxy=${http_proxy:-}
Chris Smartc3522542016-02-16 11:59:36 +110073PROXY=""
Chris Smart02651712015-11-11 11:09:00 +110074
Alanny Lopezccc650e2017-04-24 15:14:20 -050075# Determine the architecture
76ARCH=$(uname -m)
77
78# Determine the prefix of the Dockerfile's base image
79case ${ARCH} in
80 "ppc64le")
81 DOCKER_BASE="ppc64le/"
82 ;;
83 "x86_64")
84 DOCKER_BASE=""
85 ;;
86 *)
87 echo "Unsupported system architecture(${ARCH}) found for docker image"
88 exit 1
89esac
Andrew Geissler11abbbe2016-08-14 19:39:47 -050090
Chris Smart02651712015-11-11 11:09:00 +110091# Timestamp for job
92echo "Build started, $(date)"
93
Alanny Lopez7ec6d4d2017-06-09 09:43:01 -050094# If the obmcext directory doesn't exist clone it in
95if [ ! -d ${obmcext} ]; then
96 echo "Clone in openbmc master to ${obmcext}"
97 git clone https://github.com/openbmc/openbmc ${obmcext}
Andrew Geisslerc3c35202016-08-16 08:47:50 -050098fi
99
Alanny Lopez723fea62017-09-12 11:22:17 -0500100# Make and chown the extraction directory to avoid permission errors
101if [ ! -d ${extraction} ]; then
102 mkdir -p ${extraction}
103fi
104chown ${UID}:${GROUPS} ${extraction}
105
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500106# Work out what build target we should be running and set BitBake command
Chris Smart02651712015-11-11 11:09:00 +1100107case ${target} in
108 barreleye)
109 BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-openpower/meta-rackspace/meta-barreleye/conf source oe-init-build-env"
110 ;;
111 palmetto)
112 BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-openpower/meta-ibm/meta-palmetto/conf source oe-init-build-env"
113 ;;
Joel Stanley0e077202016-06-28 16:42:45 +0930114 witherspoon)
115 BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-openpower/meta-ibm/meta-witherspoon/conf source oe-init-build-env"
116 ;;
117 firestone)
118 BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-openpower/meta-ibm/meta-firestone/conf source oe-init-build-env"
119 ;;
120 garrison)
121 BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-openpower/meta-ibm/meta-garrison/conf source oe-init-build-env"
122 ;;
123 evb-ast2500)
124 BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-evb/meta-evb-aspeed/meta-evb-ast2500/conf source oe-init-build-env"
125 ;;
Joel Stanley915381f2016-11-01 16:58:59 +1030126 zaius)
127 BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-openpower/meta-ingrasys/meta-zaius/conf source oe-init-build-env"
128 ;;
129 romulus)
130 BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-openpower/meta-ibm/meta-romulus/conf source oe-init-build-env"
131 ;;
Chris Smart02651712015-11-11 11:09:00 +1100132 qemu)
133 BITBAKE_CMD="source openbmc-env"
134 ;;
135 *)
136 exit 1
137 ;;
138esac
139
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500140# Configure Docker build
Chris Smart02651712015-11-11 11:09:00 +1100141if [[ "${distro}" == fedora ]];then
142
143 if [[ -n "${http_proxy}" ]]; then
144 PROXY="RUN echo \"proxy=${http_proxy}\" >> /etc/dnf/dnf.conf"
145 fi
146
147 Dockerfile=$(cat << EOF
Alanny Lopezccc650e2017-04-24 15:14:20 -0500148 FROM ${DOCKER_BASE}${distro}:${imgtag}
Chris Smart02651712015-11-11 11:09:00 +1100149
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500150 ${PROXY}
Chris Smart02651712015-11-11 11:09:00 +1100151
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500152 # Set the locale
153 RUN locale-gen en_US.UTF-8
154 ENV LANG en_US.UTF-8
155 ENV LANGUAGE en_US:en
156 ENV LC_ALL en_US.UTF-8
Saqib Khan75635122017-03-23 10:57:34 -0500157
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500158 RUN dnf --refresh install -y \
159 bzip2 \
160 chrpath \
161 cpio \
162 diffstat \
163 findutils \
164 gcc \
165 gcc-c++ \
166 git \
167 make \
168 patch \
169 perl-bignum \
170 perl-Data-Dumper \
171 perl-Thread-Queue \
172 python-devel \
173 python3-devel \
174 SDL-devel \
175 socat \
176 subversion \
177 tar \
178 texinfo \
179 wget \
Saqib Khan5158a322017-10-23 11:31:24 -0500180 which \
181 iputils-ping
Chris Smart02651712015-11-11 11:09:00 +1100182
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500183 RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
184 RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
Chris Smart02651712015-11-11 11:09:00 +1100185
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500186 USER ${USER}
187 ENV HOME ${HOME}
188 RUN /bin/bash
Chris Smart02651712015-11-11 11:09:00 +1100189EOF
190)
191
Alanny Lopezccc650e2017-04-24 15:14:20 -0500192elif [[ "${distro}" == ubuntu ]]; then
193
Chris Smart02651712015-11-11 11:09:00 +1100194 if [[ -n "${http_proxy}" ]]; then
195 PROXY="RUN echo \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy"
196 fi
197
198 Dockerfile=$(cat << EOF
Alanny Lopezccc650e2017-04-24 15:14:20 -0500199 FROM ${DOCKER_BASE}${distro}:${imgtag}
Chris Smart02651712015-11-11 11:09:00 +1100200
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500201 ${PROXY}
Chris Smart02651712015-11-11 11:09:00 +1100202
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500203 ENV DEBIAN_FRONTEND noninteractive
Saqib Khan75635122017-03-23 10:57:34 -0500204
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500205 RUN apt-get update && apt-get install -yy \
206 build-essential \
207 chrpath \
208 debianutils \
209 diffstat \
210 gawk \
211 git \
212 libdata-dumper-simple-perl \
213 libsdl1.2-dev \
214 libthread-queue-any-perl \
Alanny Lopez27af3a02017-05-26 10:49:06 -0500215 locales \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500216 python \
217 python3 \
218 socat \
219 subversion \
220 texinfo \
221 cpio \
Saqib Khan5158a322017-10-23 11:31:24 -0500222 wget \
223 iputils-ping
Chris Smart02651712015-11-11 11:09:00 +1100224
Alanny Lopez27af3a02017-05-26 10:49:06 -0500225 # Set the locale
226 RUN locale-gen en_US.UTF-8
227 ENV LANG en_US.UTF-8
228 ENV LANGUAGE en_US:en
229 ENV LC_ALL en_US.UTF-8
230
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500231 RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
232 RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
Chris Smartd30c5902016-03-01 15:00:54 +1100233
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500234 USER ${USER}
235 ENV HOME ${HOME}
236 RUN /bin/bash
Chris Smart02651712015-11-11 11:09:00 +1100237EOF
238)
239fi
240
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500241# Create the Docker run script
Chris Smart02651712015-11-11 11:09:00 +1100242export PROXY_HOST=${http_proxy/#http*:\/\/}
243export PROXY_HOST=${PROXY_HOST/%:[0-9]*}
244export PROXY_PORT=${http_proxy/#http*:\/\/*:}
245
Chris Smart01d2b962015-11-11 18:05:30 +1100246mkdir -p ${WORKSPACE}
Chris Smart02651712015-11-11 11:09:00 +1100247
Chris Smart01d2b962015-11-11 18:05:30 +1100248cat > "${WORKSPACE}"/build.sh << EOF_SCRIPT
Chris Smart02651712015-11-11 11:09:00 +1100249#!/bin/bash
250
Joel Stanley38c9d142016-02-16 12:31:55 +1030251set -xeo pipefail
Chris Smart02651712015-11-11 11:09:00 +1100252
Alanny Lopez723fea62017-09-12 11:22:17 -0500253# Go into the OpenBMC directory, the build will handle changing directories
254cd ${obmcext}
Chris Smart02651712015-11-11 11:09:00 +1100255
256# Set up proxies
257export ftp_proxy=${http_proxy}
258export http_proxy=${http_proxy}
259export https_proxy=${http_proxy}
260
Chris Smart01d2b962015-11-11 18:05:30 +1100261mkdir -p ${WORKSPACE}/bin
Chris Smart02651712015-11-11 11:09:00 +1100262
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500263# Configure proxies for BitBake
Chris Smart02651712015-11-11 11:09:00 +1100264if [[ -n "${http_proxy}" ]]; then
265
Chris Smartd30c5902016-03-01 15:00:54 +1100266 cat > ${WORKSPACE}/bin/git-proxy << \EOF_GIT
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500267 #!/bin/bash
268 # \$1 = hostname, \$2 = port
269 PROXY=${PROXY_HOST}
270 PROXY_PORT=${PROXY_PORT}
271 exec socat STDIO PROXY:\${PROXY}:\${1}:\${2},proxyport=\${PROXY_PORT}
Chris Smart02651712015-11-11 11:09:00 +1100272EOF_GIT
273
Chris Smart01d2b962015-11-11 18:05:30 +1100274 chmod a+x ${WORKSPACE}/bin/git-proxy
275 export PATH=${WORKSPACE}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH}
Chris Smart02651712015-11-11 11:09:00 +1100276 git config core.gitProxy git-proxy
277
278 mkdir -p ~/.subversion
279
280 cat > ~/.subversion/servers << EOF_SVN
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500281 [global]
282 http-proxy-host = ${PROXY_HOST}
283 http-proxy-port = ${PROXY_PORT}
Chris Smart02651712015-11-11 11:09:00 +1100284EOF_SVN
285fi
286
287# Source our build env
288${BITBAKE_CMD}
289
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500290# Custom BitBake config settings
Chris Smart02651712015-11-11 11:09:00 +1100291cat >> conf/local.conf << EOF_CONF
Chris Smartc650c202015-11-25 15:58:53 +1100292BB_NUMBER_THREADS = "$(nproc)"
293PARALLEL_MAKE = "-j$(nproc)"
Chris Smart02651712015-11-11 11:09:00 +1100294INHERIT += "rm_work"
295BB_GENERATE_MIRROR_TARBALLS = "1"
Alanny Lopez97a79502017-04-24 16:19:25 -0500296DL_DIR="${sscdir}/bitbake_downloads"
297SSTATE_DIR="${sscdir}/bitbake_sharedstatecache"
Chris Smart02651712015-11-11 11:09:00 +1100298USER_CLASSES += "buildstats"
Andrew Geissler931ec672016-08-11 13:10:05 -0500299INHERIT_remove = "uninative"
Alanny Lopez723fea62017-09-12 11:22:17 -0500300TMPDIR="${builddir}"
Chris Smart02651712015-11-11 11:09:00 +1100301EOF_CONF
302
303# Kick off a build
Andrew Geissler496a6b02016-10-03 10:04:49 -0500304bitbake ${BITBAKE_OPTS} obmc-phosphor-image
Chris Smart02651712015-11-11 11:09:00 +1100305
Alanny Lopezd32d3322017-07-18 15:21:39 -0500306# Copy build directory of internal obmcdir into workspace directory
Alanny Lopez723fea62017-09-12 11:22:17 -0500307cp -r ${builddir}/* ${extraction}
Chris Smart02651712015-11-11 11:09:00 +1100308EOF_SCRIPT
309
310chmod a+x ${WORKSPACE}/build.sh
311
Alanny Lopez51186882017-08-01 16:14:41 -0500312# Give the Docker image a name based on the distro,tag,arch,and target
313imgname=${imgname:-openbmc/${distro}:${imgtag}-${target}-${ARCH}}
314
315# Build the Docker image
316docker build -t ${imgname} - <<< "${Dockerfile}"
317
Alanny Lopez3fbaa512017-04-24 15:46:52 -0500318# Determine if the build container will be launched with Docker or Kubernetes
319if [[ "${launch}" == "" ]]; then
320
Alanny Lopez7ec6d4d2017-06-09 09:43:01 -0500321 # If obmcext or sscdir are ${HOME} or a subdirectory they will not be mounted
322 mountobmcext="-v ""${obmcext}"":""${obmcext}"" "
Alanny Lopez97a79502017-04-24 16:19:25 -0500323 mountsscdir="-v ""${sscdir}"":""${sscdir}"" "
Alanny Lopez7ec6d4d2017-06-09 09:43:01 -0500324 if [[ "${obmcext}" = "${HOME}/"* || "${obmcext}" = "${HOME}" ]];then
325 mountobmcext=""
Alanny Lopez97a79502017-04-24 16:19:25 -0500326 fi
327 if [[ "${sscdir}" = "${HOME}/"* || "${sscdir}" = "${HOME}" ]];then
328 mountsscdir=""
329 fi
330
Alanny Lopez3fbaa512017-04-24 15:46:52 -0500331 # Run the Docker container, execute the build.sh script
332 docker run \
333 --cap-add=sys_admin \
334 --net=host \
335 --rm=true \
336 -e WORKSPACE=${WORKSPACE} \
337 -w "${HOME}" \
338 -v "${HOME}":"${HOME}" \
Alanny Lopez7ec6d4d2017-06-09 09:43:01 -0500339 ${mountobmcext} \
Alanny Lopez97a79502017-04-24 16:19:25 -0500340 ${mountsscdir} \
Alanny Lopez3fbaa512017-04-24 15:46:52 -0500341 -t ${imgname} \
342 ${WORKSPACE}/build.sh
343
344elif [[ "${launch}" == "job" || "${launch}" == "pod" ]]; then
345
346 # Source and run the helper script to launch the pod or job
Alanny Lopeze08e8702018-02-24 18:07:13 -0600347 . ${build_scripts_dir}/kubernetes/kubernetes-launch.sh OpenBMC-build true true
Alanny Lopez3fbaa512017-04-24 15:46:52 -0500348
349else
350 echo "Launch Parameter is invalid"
351fi
Chris Smart02651712015-11-11 11:09:00 +1100352
Alanny Lopezd32d3322017-07-18 15:21:39 -0500353# To maintain function of resources that used an older path, add a link
Alanny Lopez723fea62017-09-12 11:22:17 -0500354ln -sf ${extraction}/deploy ${WORKSPACE}/deploy
Alanny Lopezd32d3322017-07-18 15:21:39 -0500355
Chris Smart02651712015-11-11 11:09:00 +1100356# Timestamp for build
Alanny Lopez0e8ad992017-06-19 15:45:23 -0500357echo "Build completed, $(date)"