blob: 30e1c4215b62b4153c20b1c7795843712fdacdc8 [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:
Alanny Lopez1246b032018-02-24 23:34:55 -060019# BITBAKE_OPTS Set to "-c populate_sdk" or whatever other BitBake options
Alanny Lopeze08e8702018-02-24 18:07:13 -060020# you'd like to pass into the build.
21# Default: "", no options set
Alanny Lopez1246b032018-02-24 23:34:55 -060022# build_dir Path where the actual BitBake build occurs inside the
Alanny Lopeze08e8702018-02-24 18:07:13 -060023# 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"
Alanny Lopez1246b032018-02-24 23:34:55 -060028# img_name The name given to the target build's docker image.
Alanny Lopeze08e8702018-02-24 18:07:13 -060029# Default: "openbmc/${distro}:${imgtag}-${target}-${ARCH}"
Alanny Lopez1246b032018-02-24 23:34:55 -060030# img_tag The base docker image distro tag:
Alanny Lopeze08e8702018-02-24 18:07:13 -060031# 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:
Alanny Lopeze08e8702018-02-24 18:07:13 -060040# launch ""|job|pod
41# Can be left blank to launch the container via Docker
42# Job lets you keep a copy of job and container logs on the
43# api, can be useful if not using Jenkins as you can run the
44# job again via the api without needing this script.
45# Pod launches a container which runs to completion without
46# saving anything to the api when it completes.
Alanny Lopez1246b032018-02-24 23:34:55 -060047# obmc_dir Path of the OpenBMC repo directory used as a reference
Alanny Lopeze08e8702018-02-24 18:07:13 -060048# for the build inside the container.
49# Default: "${WORKSPACE}/openbmc"
Alanny Lopez1246b032018-02-24 23:34:55 -060050# ssc_dir Path to use as the BitBake shared-state cache directory.
Alanny Lopeze08e8702018-02-24 18:07:13 -060051# Default: "/home/${USER}"
Alanny Lopez1246b032018-02-24 23:34:55 -060052# xtrct_path Path where the build_dir contents will be copied out to
53# when the build completes.
54# Default: "${obmc_dir}/build/tmp"
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 Lopez1246b032018-02-24 23:34:55 -060065img_tag=${img_tag:-latest}
66build_dir=${build_dir:-/tmp/openbmc}
67ssc_dir=${ssc_dir:-${HOME}}
Chris Smart02651712015-11-11 11:09:00 +110068WORKSPACE=${WORKSPACE:-${HOME}/${RANDOM}${RANDOM}}
Alanny Lopez1246b032018-02-24 23:34:55 -060069obmc_dir=${obmc_dir:-${WORKSPACE}/openbmc}
70xtrct_path=${xtrct_path:-${obmc_dir}/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 Lopez1246b032018-02-24 23:34:55 -060094# If the obmc_dir directory doesn't exist clone it in
95if [ ! -d ${obmc_dir} ]; then
96 echo "Clone in openbmc master to ${obmc_dir}"
97 git clone https://github.com/openbmc/openbmc ${obmc_dir}
Andrew Geisslerc3c35202016-08-16 08:47:50 -050098fi
99
Alanny Lopez1246b032018-02-24 23:34:55 -0600100# Make and chown the xtrct_path directory to avoid permission errors
101if [ ! -d ${xtrct_path} ]; then
102 mkdir -p ${xtrct_path}
Alanny Lopez723fea62017-09-12 11:22:17 -0500103fi
Alanny Lopez1246b032018-02-24 23:34:55 -0600104chown ${UID}:${GROUPS} ${xtrct_path}
Alanny Lopez723fea62017-09-12 11:22:17 -0500105
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 Lopez1246b032018-02-24 23:34:55 -0600148 FROM ${DOCKER_BASE}${distro}:${img_tag}
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 Lopez1246b032018-02-24 23:34:55 -0600199 FROM ${DOCKER_BASE}${distro}:${img_tag}
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
Alanny Lopez1246b032018-02-24 23:34:55 -0600254cd ${obmc_dir}
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 Lopez1246b032018-02-24 23:34:55 -0600296DL_DIR="${ssc_dir}/bitbake_downloads"
297SSTATE_DIR="${ssc_dir}/bitbake_sharedstatecache"
Chris Smart02651712015-11-11 11:09:00 +1100298USER_CLASSES += "buildstats"
Andrew Geissler931ec672016-08-11 13:10:05 -0500299INHERIT_remove = "uninative"
Alanny Lopez1246b032018-02-24 23:34:55 -0600300TMPDIR="${build_dir}"
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 Lopez1246b032018-02-24 23:34:55 -0600306# Copy internal build directory into xtrct_path directory
307cp -r ${build_dir}/* ${xtrct_path}
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
Alanny Lopez1246b032018-02-24 23:34:55 -0600313img_name=${img_name:-openbmc/${distro}:${img_tag}-${target}-${ARCH}}
Alanny Lopez51186882017-08-01 16:14:41 -0500314
315# Build the Docker image
Alanny Lopez1246b032018-02-24 23:34:55 -0600316docker build -t ${img_name} - <<< "${Dockerfile}"
Alanny Lopez51186882017-08-01 16:14:41 -0500317
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 Lopez1246b032018-02-24 23:34:55 -0600321 # If obmc_dir or ssc_dir are ${HOME} or a subdirectory they will not be mounted
322 mount_obmc_dir="-v ""${obmc_dir}"":""${obmc_dir}"" "
323 mount_ssc_dir="-v ""${ssc_dir}"":""${ssc_dir}"" "
324 if [[ "${obmc_dir}" = "${HOME}/"* || "${obmc_dir}" = "${HOME}" ]];then
325 mount_obmc_dir=""
Alanny Lopez97a79502017-04-24 16:19:25 -0500326 fi
Alanny Lopez1246b032018-02-24 23:34:55 -0600327 if [[ "${ssc_dir}" = "${HOME}/"* || "${ssc_dir}" = "${HOME}" ]];then
328 mount_ssc_dir=""
Alanny Lopez97a79502017-04-24 16:19:25 -0500329 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 Lopez1246b032018-02-24 23:34:55 -0600339 ${mount_obmc_dir} \
340 ${mount_ssc_dir} \
341 -t ${img_name} \
Alanny Lopez3fbaa512017-04-24 15:46:52 -0500342 ${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 Lopez1246b032018-02-24 23:34:55 -0600354ln -sf ${xtrct_path}/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)"