blob: 7a5cacfdd3561fa47cf50ef78ce9b04ab6e1b027 [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#
Michael Shepos3939e952019-01-16 16:00:35 -06004# This build script is for running the OpenBMC builds as Docker containers.
Alanny Lopez3fbaa512017-04-24 15:46:52 -05005#
Alanny Lopezb0a12dd2017-04-24 16:21:47 -05006###############################################################################
7#
Alanny Lopeze08e8702018-02-24 18:07:13 -06008# Script Variables:
9# build_scripts_dir The path of the openbmc-build-scripts directory.
10# Default: The directory containing this script
11# http_proxy The HTTP address of the proxy server to connect to.
12# Default: "", proxy is not setup if this is not set
13# WORKSPACE Path of the workspace directory where some intermediate
14# files and the images will be saved to.
15# Default: "~/{RandomNumber}"
Andrew Geisslerdc1e7022018-03-26 07:54:48 -070016# num_cpu Number of cpu's to give bitbake, default is total amount
17# in system
Lei YU39587ad2020-06-17 19:55:54 +080018# UBUNTU_MIRROR: <optional, the URL of a mirror of Ubuntu to override the
19# default ones in /etc/apt/sources.list>
20# default is empty, and no mirror is used.
Alanny Lopezb0a12dd2017-04-24 16:21:47 -050021#
Alanny Lopeze08e8702018-02-24 18:07:13 -060022# Docker Image Build Variables:
Alanny Lopez1246b032018-02-24 23:34:55 -060023# BITBAKE_OPTS Set to "-c populate_sdk" or whatever other BitBake options
Alanny Lopeze08e8702018-02-24 18:07:13 -060024# you'd like to pass into the build.
25# Default: "", no options set
Alanny Lopez1246b032018-02-24 23:34:55 -060026# build_dir Path where the actual BitBake build occurs inside the
Alanny Lopeze08e8702018-02-24 18:07:13 -060027# container, path cannot be located on network storage.
28# Default: "/tmp/openbmc"
29# distro The distro used as the base image for the build image:
30# fedora|ubuntu
31# Default: "ubuntu"
Alanny Lopez1246b032018-02-24 23:34:55 -060032# img_name The name given to the target build's docker image.
Alanny Lopeze08e8702018-02-24 18:07:13 -060033# Default: "openbmc/${distro}:${imgtag}-${target}-${ARCH}"
Alanny Lopez1246b032018-02-24 23:34:55 -060034# img_tag The base docker image distro tag:
Alanny Lopeze08e8702018-02-24 18:07:13 -060035# ubuntu: latest|16.04|14.04|trusty|xenial
36# fedora: 23|24|25
37# Default: "latest"
38# target The target we aim to build:
Andrew Geisslerdd820722018-02-20 13:42:58 -060039# evb-ast2500|palmetto|qemu|qemux86-64
Andrew Geisslerdd9e1962019-08-15 08:27:28 -050040# romulus|s2600wf|witherspoon|zaius|tiogapass|gsj|mihawk
Andrew Geisslerf86b4a82019-09-27 15:21:11 -050041# witherspoon-tacoma|rainier
Alanny Lopeze08e8702018-02-24 18:07:13 -060042# Default: "qemu"
Andrew Geissler215e43c2019-04-23 10:57:48 -050043# no_tar Set to true if you do not want the debug tar built
44# Default: "false"
Michael Shepos33aeca42019-06-13 02:36:17 -050045# nice_priority Set nice priotity for bitbake command.
46# Nice:
47# Run with an adjusted niceness, which affects process
48# scheduling. Nice values range from -20 (most favorable
49# to the process) to 19 (least favorable to the process).
50# Default: "", nice is not used if nice_priority is not set
Alanny Lopez723fea62017-09-12 11:22:17 -050051#
Alanny Lopeze08e8702018-02-24 18:07:13 -060052# Deployment Variables:
Alanny Lopez1246b032018-02-24 23:34:55 -060053# obmc_dir Path of the OpenBMC repo directory used as a reference
Alanny Lopeze08e8702018-02-24 18:07:13 -060054# for the build inside the container.
55# Default: "${WORKSPACE}/openbmc"
Lei YUdf0e45c2020-09-03 11:25:57 +080056# ssc_dir Path of the OpenBMC shared directory that contains the
57# downloads dir and the sstate dir.
58# Default: "${HOME}"
Michael Shepos10afbb22019-02-06 13:33:07 -060059# xtrct_small_copy_dir
60# Directory within build_dir that should be copied to
61# xtrct_path. The directory and all parents up to, but not
62# including, build_dir will be copied. For example, if
63# build_dir is set to "/tmp/openbmc" and this is set to
64# "build/tmp", the directory at xtrct_path will have the
65# following directory structure:
66# xtrct_path
67# | - build
68# | - tmp
69# ...
70# Can also be set to the empty string to copy the entire
71# contents of build_dir to xtrct_path.
72# Default: "deploy/images".
Alanny Lopezb0a12dd2017-04-24 16:21:47 -050073#
74###############################################################################
Joel Stanley4b8b2392016-02-12 15:44:57 +103075# Trace bash processing. Set -e so when a step fails, we fail the build
Joel Stanley38c9d142016-02-16 12:31:55 +103076set -xeo pipefail
Chris Smart02651712015-11-11 11:09:00 +110077
Alanny Lopez46967702018-02-25 00:29:14 -060078# Script Variables:
79build_scripts_dir=${build_scripts_dir:-"$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"}
80http_proxy=${http_proxy:-}
81WORKSPACE=${WORKSPACE:-${HOME}/${RANDOM}${RANDOM}}
Andrew Geisslerdc1e7022018-03-26 07:54:48 -070082num_cpu=${num_cpu:-$(nproc)}
Lei YU39587ad2020-06-17 19:55:54 +080083UBUNTU_MIRROR=${UBUNTU_MIRROR:-""}
Alanny Lopez46967702018-02-25 00:29:14 -060084
85# Docker Image Build Variables:
86build_dir=${build_dir:-/tmp/openbmc}
Chris Smart02651712015-11-11 11:09:00 +110087distro=${distro:-ubuntu}
Alanny Lopez1246b032018-02-24 23:34:55 -060088img_tag=${img_tag:-latest}
Alanny Lopez46967702018-02-25 00:29:14 -060089target=${target:-qemu}
Andrew Geissler215e43c2019-04-23 10:57:48 -050090no_tar=${no_tar:-false}
Michael Shepos33aeca42019-06-13 02:36:17 -050091nice_priority=${nice_priority:-}
Alanny Lopez46967702018-02-25 00:29:14 -060092
93# Deployment variables
Alanny Lopez46967702018-02-25 00:29:14 -060094obmc_dir=${obmc_dir:-${WORKSPACE}/openbmc}
Lei YUdf0e45c2020-09-03 11:25:57 +080095ssc_dir=${ssc_dir:-${HOME}}
Michael Shepos10afbb22019-02-06 13:33:07 -060096xtrct_small_copy_dir=${xtrct_small_copy_dir:-deploy/images}
Michael Shepos3939e952019-01-16 16:00:35 -060097xtrct_path="${obmc_dir}/build/tmp"
98xtrct_copy_timeout="300"
Alanny Lopez46967702018-02-25 00:29:14 -060099
Andrew Geissler2eb45d32019-09-18 21:56:44 -0500100bitbake_target="obmc-phosphor-image"
Chris Smartc3522542016-02-16 11:59:36 +1100101PROXY=""
Chris Smart02651712015-11-11 11:09:00 +1100102
Lei YU39587ad2020-06-17 19:55:54 +0800103MIRROR=""
104if [[ -n "${UBUNTU_MIRROR}" ]]; then
105 MIRROR="RUN echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME) main restricted universe multiverse\" > /etc/apt/sources.list && \
106 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-updates main restricted universe multiverse\" >> /etc/apt/sources.list && \
107 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-security main restricted universe multiverse\" >> /etc/apt/sources.list && \
108 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-proposed main restricted universe multiverse\" >> /etc/apt/sources.list && \
109 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-backports main restricted universe multiverse\" >> /etc/apt/sources.list"
110fi
111
Alanny Lopezccc650e2017-04-24 15:14:20 -0500112# Determine the architecture
113ARCH=$(uname -m)
114
115# Determine the prefix of the Dockerfile's base image
116case ${ARCH} in
117 "ppc64le")
118 DOCKER_BASE="ppc64le/"
119 ;;
120 "x86_64")
121 DOCKER_BASE=""
122 ;;
123 *)
124 echo "Unsupported system architecture(${ARCH}) found for docker image"
125 exit 1
126esac
Andrew Geissler11abbbe2016-08-14 19:39:47 -0500127
Chris Smart02651712015-11-11 11:09:00 +1100128# Timestamp for job
129echo "Build started, $(date)"
130
Alanny Lopez1246b032018-02-24 23:34:55 -0600131# If the obmc_dir directory doesn't exist clone it in
132if [ ! -d ${obmc_dir} ]; then
133 echo "Clone in openbmc master to ${obmc_dir}"
134 git clone https://github.com/openbmc/openbmc ${obmc_dir}
Andrew Geisslerc3c35202016-08-16 08:47:50 -0500135fi
136
Alanny Lopez1246b032018-02-24 23:34:55 -0600137# Make and chown the xtrct_path directory to avoid permission errors
138if [ ! -d ${xtrct_path} ]; then
139 mkdir -p ${xtrct_path}
Alanny Lopez723fea62017-09-12 11:22:17 -0500140fi
Alanny Lopez1246b032018-02-24 23:34:55 -0600141chown ${UID}:${GROUPS} ${xtrct_path}
Alanny Lopez723fea62017-09-12 11:22:17 -0500142
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500143# Work out what build target we should be running and set BitBake command
Michael Shepos2de03e92018-11-07 15:54:56 -0600144MACHINE=""
Chris Smart02651712015-11-11 11:09:00 +1100145case ${target} in
Chris Smart02651712015-11-11 11:09:00 +1100146 palmetto)
Brad Bishop7161a172018-10-05 16:48:06 -0400147 LAYER_DIR="meta-ibm/meta-palmetto"
Brad Bishop91a200b2019-08-22 14:24:33 -0400148 MACHINE="palmetto"
149 DISTRO="openbmc-openpower"
Chris Smart02651712015-11-11 11:09:00 +1100150 ;;
Adriana Kobylak4ec7db02019-05-07 12:44:30 -0500151 swift)
Brad Bishopf713bf42019-11-13 20:23:32 -0500152 LAYER_DIR="meta-ibm"
Adriana Kobylak4ec7db02019-05-07 12:44:30 -0500153 MACHINE="swift"
Brad Bishop91a200b2019-08-22 14:24:33 -0400154 DISTRO="openbmc-witherspoon"
Adriana Kobylak4ec7db02019-05-07 12:44:30 -0500155 ;;
Andrew Geisslerdd9e1962019-08-15 08:27:28 -0500156 mihawk)
Brad Bishopf713bf42019-11-13 20:23:32 -0500157 LAYER_DIR="meta-ibm"
Andrew Geisslerdd9e1962019-08-15 08:27:28 -0500158 MACHINE="mihawk"
Brad Bishop91a200b2019-08-22 14:24:33 -0400159 DISTRO="openbmc-witherspoon"
Andrew Geisslerdd9e1962019-08-15 08:27:28 -0500160 ;;
Joel Stanley0e077202016-06-28 16:42:45 +0930161 witherspoon)
Brad Bishopf713bf42019-11-13 20:23:32 -0500162 LAYER_DIR="meta-ibm"
Brad Bishop91a200b2019-08-22 14:24:33 -0400163 MACHINE="witherspoon"
164 DISTRO="openbmc-witherspoon"
Joel Stanley0e077202016-06-28 16:42:45 +0930165 ;;
Adriana Kobylakfcba1c32019-05-10 11:33:37 -0500166 witherspoon-128)
Brad Bishopf713bf42019-11-13 20:23:32 -0500167 LAYER_DIR="meta-ibm"
Adriana Kobylakfcba1c32019-05-10 11:33:37 -0500168 MACHINE="witherspoon-128"
Brad Bishop91a200b2019-08-22 14:24:33 -0400169 DISTRO="openbmc-witherspoon"
Adriana Kobylakfcba1c32019-05-10 11:33:37 -0500170 ;;
Andrew Geissler2eb45d32019-09-18 21:56:44 -0500171 witherspoon-tacoma)
Brad Bishopf713bf42019-11-13 20:23:32 -0500172 LAYER_DIR="meta-ibm"
Andrew Geissler2eb45d32019-09-18 21:56:44 -0500173 MACHINE="witherspoon-tacoma"
174 DISTRO="openbmc-openpower"
Andrew Geissler2eb45d32019-09-18 21:56:44 -0500175 ;;
Andrew Geisslerf86b4a82019-09-27 15:21:11 -0500176 rainier)
Brad Bishopf713bf42019-11-13 20:23:32 -0500177 LAYER_DIR="meta-ibm"
Andrew Geisslerf86b4a82019-09-27 15:21:11 -0500178 MACHINE="rainier"
179 DISTRO="openbmc-openpower"
180 ;;
Joel Stanley0e077202016-06-28 16:42:45 +0930181 evb-ast2500)
Brad Bishop7161a172018-10-05 16:48:06 -0400182 LAYER_DIR="meta-evb/meta-evb-aspeed/meta-evb-ast2500"
Brad Bishop91a200b2019-08-22 14:24:33 -0400183 MACHINE="evb-ast2500"
184 DISTRO="openbmc-phosphor"
Joel Stanley0e077202016-06-28 16:42:45 +0930185 ;;
Ed Tanous6dc40d92018-07-30 11:13:36 -0700186 s2600wf)
Brad Bishop7161a172018-10-05 16:48:06 -0400187 LAYER_DIR="meta-intel/meta-s2600wf"
Brad Bishop91a200b2019-08-22 14:24:33 -0400188 MACHINE="s2600wf"
189 DISTRO="openbmc-phosphor"
Ed Tanous6dc40d92018-07-30 11:13:36 -0700190 ;;
Joel Stanley915381f2016-11-01 16:58:59 +1030191 zaius)
Brad Bishop7161a172018-10-05 16:48:06 -0400192 LAYER_DIR="meta-ingrasys/meta-zaius"
Brad Bishop91a200b2019-08-22 14:24:33 -0400193 MACHINE="zaius"
194 DISTRO="openbmc-openpower"
Joel Stanley915381f2016-11-01 16:58:59 +1030195 ;;
196 romulus)
Brad Bishop7161a172018-10-05 16:48:06 -0400197 LAYER_DIR="meta-ibm/meta-romulus"
Brad Bishop91a200b2019-08-22 14:24:33 -0400198 MACHINE="romulus"
199 DISTRO="openbmc-openpower"
Joel Stanley915381f2016-11-01 16:58:59 +1030200 ;;
Vijay Khemka4c5b12e2019-01-23 14:50:09 -0800201 tiogapass)
202 LAYER_DIR="meta-facebook/meta-tiogapass"
Brad Bishop91a200b2019-08-22 14:24:33 -0400203 MACHINE="tiogapass"
204 DISTRO="openbmc-phosphor"
Vijay Khemka4c5b12e2019-01-23 14:50:09 -0800205 ;;
Andrew Geissler9eef7282019-05-10 13:28:09 -0500206 gsj)
207 LAYER_DIR="meta-quanta/meta-gsj"
Brad Bishop91a200b2019-08-22 14:24:33 -0400208 MACHINE="gsj"
Andrew Geissler8565d2a2020-04-20 15:22:14 -0500209 # Use default DISTRO from layer
Andrew Geissler9eef7282019-05-10 13:28:09 -0500210 ;;
Chris Smart02651712015-11-11 11:09:00 +1100211 *)
212 exit 1
213 ;;
214esac
215
Brad Bishop7161a172018-10-05 16:48:06 -0400216BITBAKE_CMD="TEMPLATECONF=${LAYER_DIR}/conf source oe-init-build-env"
217
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500218# Configure Docker build
Chris Smart02651712015-11-11 11:09:00 +1100219if [[ "${distro}" == fedora ]];then
220
221 if [[ -n "${http_proxy}" ]]; then
222 PROXY="RUN echo \"proxy=${http_proxy}\" >> /etc/dnf/dnf.conf"
223 fi
224
225 Dockerfile=$(cat << EOF
Alanny Lopez1246b032018-02-24 23:34:55 -0600226 FROM ${DOCKER_BASE}${distro}:${img_tag}
Chris Smart02651712015-11-11 11:09:00 +1100227
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500228 ${PROXY}
Chris Smart02651712015-11-11 11:09:00 +1100229
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500230 # Set the locale
231 RUN locale-gen en_US.UTF-8
232 ENV LANG en_US.UTF-8
233 ENV LANGUAGE en_US:en
234 ENV LC_ALL en_US.UTF-8
Saqib Khan75635122017-03-23 10:57:34 -0500235
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500236 RUN dnf --refresh install -y \
237 bzip2 \
238 chrpath \
239 cpio \
240 diffstat \
241 findutils \
242 gcc \
243 gcc-c++ \
244 git \
245 make \
246 patch \
247 perl-bignum \
248 perl-Data-Dumper \
249 perl-Thread-Queue \
250 python-devel \
251 python3-devel \
252 SDL-devel \
253 socat \
254 subversion \
255 tar \
256 texinfo \
257 wget \
Saqib Khan5158a322017-10-23 11:31:24 -0500258 which \
259 iputils-ping
Chris Smart02651712015-11-11 11:09:00 +1100260
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500261 RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
262 RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
Chris Smart02651712015-11-11 11:09:00 +1100263
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500264 USER ${USER}
265 ENV HOME ${HOME}
266 RUN /bin/bash
Chris Smart02651712015-11-11 11:09:00 +1100267EOF
268)
269
Alanny Lopezccc650e2017-04-24 15:14:20 -0500270elif [[ "${distro}" == ubuntu ]]; then
271
Chris Smart02651712015-11-11 11:09:00 +1100272 if [[ -n "${http_proxy}" ]]; then
273 PROXY="RUN echo \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy"
274 fi
275
276 Dockerfile=$(cat << EOF
Alanny Lopez1246b032018-02-24 23:34:55 -0600277 FROM ${DOCKER_BASE}${distro}:${img_tag}
Chris Smart02651712015-11-11 11:09:00 +1100278
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500279 ${PROXY}
Lei YU39587ad2020-06-17 19:55:54 +0800280 ${MIRROR}
Chris Smart02651712015-11-11 11:09:00 +1100281
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500282 ENV DEBIAN_FRONTEND noninteractive
Saqib Khan75635122017-03-23 10:57:34 -0500283
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500284 RUN apt-get update && apt-get install -yy \
285 build-essential \
286 chrpath \
287 debianutils \
288 diffstat \
289 gawk \
290 git \
291 libdata-dumper-simple-perl \
292 libsdl1.2-dev \
293 libthread-queue-any-perl \
Alanny Lopez27af3a02017-05-26 10:49:06 -0500294 locales \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500295 python \
296 python3 \
297 socat \
298 subversion \
299 texinfo \
300 cpio \
Saqib Khan5158a322017-10-23 11:31:24 -0500301 wget \
302 iputils-ping
Chris Smart02651712015-11-11 11:09:00 +1100303
Alanny Lopez27af3a02017-05-26 10:49:06 -0500304 # Set the locale
305 RUN locale-gen en_US.UTF-8
306 ENV LANG en_US.UTF-8
307 ENV LANGUAGE en_US:en
308 ENV LC_ALL en_US.UTF-8
309
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500310 RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
311 RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
Chris Smartd30c5902016-03-01 15:00:54 +1100312
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500313 USER ${USER}
314 ENV HOME ${HOME}
315 RUN /bin/bash
Chris Smart02651712015-11-11 11:09:00 +1100316EOF
317)
318fi
319
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500320# Create the Docker run script
Chris Smart02651712015-11-11 11:09:00 +1100321export PROXY_HOST=${http_proxy/#http*:\/\/}
322export PROXY_HOST=${PROXY_HOST/%:[0-9]*}
323export PROXY_PORT=${http_proxy/#http*:\/\/*:}
324
Chris Smart01d2b962015-11-11 18:05:30 +1100325mkdir -p ${WORKSPACE}
Chris Smart02651712015-11-11 11:09:00 +1100326
Andrew Geissler215e43c2019-04-23 10:57:48 -0500327# Determine command for bitbake image build
Andrew Geissler215e43c2019-04-23 10:57:48 -0500328if [ $no_tar = "false" ]; then
Andrew Geissler2eb45d32019-09-18 21:56:44 -0500329 bitbake_target="${bitbake_target} obmc-phosphor-debug-tarball"
Andrew Geissler215e43c2019-04-23 10:57:48 -0500330fi
331
Chris Smart01d2b962015-11-11 18:05:30 +1100332cat > "${WORKSPACE}"/build.sh << EOF_SCRIPT
Chris Smart02651712015-11-11 11:09:00 +1100333#!/bin/bash
334
Joel Stanley38c9d142016-02-16 12:31:55 +1030335set -xeo pipefail
Chris Smart02651712015-11-11 11:09:00 +1100336
Alanny Lopez723fea62017-09-12 11:22:17 -0500337# Go into the OpenBMC directory, the build will handle changing directories
Alanny Lopez1246b032018-02-24 23:34:55 -0600338cd ${obmc_dir}
Chris Smart02651712015-11-11 11:09:00 +1100339
340# Set up proxies
341export ftp_proxy=${http_proxy}
342export http_proxy=${http_proxy}
343export https_proxy=${http_proxy}
344
Chris Smart01d2b962015-11-11 18:05:30 +1100345mkdir -p ${WORKSPACE}/bin
Chris Smart02651712015-11-11 11:09:00 +1100346
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500347# Configure proxies for BitBake
Chris Smart02651712015-11-11 11:09:00 +1100348if [[ -n "${http_proxy}" ]]; then
349
Chris Smartd30c5902016-03-01 15:00:54 +1100350 cat > ${WORKSPACE}/bin/git-proxy << \EOF_GIT
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500351 #!/bin/bash
352 # \$1 = hostname, \$2 = port
353 PROXY=${PROXY_HOST}
354 PROXY_PORT=${PROXY_PORT}
355 exec socat STDIO PROXY:\${PROXY}:\${1}:\${2},proxyport=\${PROXY_PORT}
Chris Smart02651712015-11-11 11:09:00 +1100356EOF_GIT
357
Chris Smart01d2b962015-11-11 18:05:30 +1100358 chmod a+x ${WORKSPACE}/bin/git-proxy
359 export PATH=${WORKSPACE}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH}
Chris Smart02651712015-11-11 11:09:00 +1100360
Lei YUa76d7ce2020-05-11 15:20:56 +0800361 lock=${HOME}/build-setup.lock
362 flock \${lock} git config --global core.gitProxy ${WORKSPACE}/bin/git-proxy
363 flock \${lock} git config --global http.proxy ${http_proxy}
Chris Smart02651712015-11-11 11:09:00 +1100364
Lei YUa76d7ce2020-05-11 15:20:56 +0800365 flock \${lock} mkdir -p ~/.subversion
366 flock \${lock} cat > ~/.subversion/servers << EOF_SVN
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500367 [global]
368 http-proxy-host = ${PROXY_HOST}
369 http-proxy-port = ${PROXY_PORT}
Chris Smart02651712015-11-11 11:09:00 +1100370EOF_SVN
Lei YU58cb3ad2020-04-30 13:04:58 +0800371
Lei YUa76d7ce2020-05-11 15:20:56 +0800372 flock \${lock} cat > ~/.wgetrc << EOF_WGETRC
Lei YU58cb3ad2020-04-30 13:04:58 +0800373 https_proxy = ${http_proxy}
374 http_proxy = ${http_proxy}
375 use_proxy = on
376EOF_WGETRC
377
Lei YUa76d7ce2020-05-11 15:20:56 +0800378 flock \${lock} cat > ~/.curlrc << EOF_CURLRC
Lei YU58cb3ad2020-04-30 13:04:58 +0800379 proxy = ${PROXY_HOST}:${PROXY_PORT}
380EOF_CURLRC
Chris Smart02651712015-11-11 11:09:00 +1100381fi
382
383# Source our build env
384${BITBAKE_CMD}
385
Andrew Geissler8565d2a2020-04-20 15:22:14 -0500386if [[ -z "${MACHINE}" ]]; then
387 echo "MACHINE is not configured for ${target}"
Brad Bishop91a200b2019-08-22 14:24:33 -0400388 exit 1
Michael Shepos2de03e92018-11-07 15:54:56 -0600389fi
390
Brad Bishop91a200b2019-08-22 14:24:33 -0400391export MACHINE="${MACHINE}"
Andrew Geissler8565d2a2020-04-20 15:22:14 -0500392if [[ -z "${DISTRO}" ]]; then
393 echo "DISTRO is not configured for ${target} so will use default"
394 unset DISTRO
395else
396 export DISTRO="${DISTRO}"
397fi
Brad Bishop91a200b2019-08-22 14:24:33 -0400398
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500399# Custom BitBake config settings
Chris Smart02651712015-11-11 11:09:00 +1100400cat >> conf/local.conf << EOF_CONF
Chris Smartc650c202015-11-25 15:58:53 +1100401BB_NUMBER_THREADS = "$(nproc)"
402PARALLEL_MAKE = "-j$(nproc)"
Chris Smart02651712015-11-11 11:09:00 +1100403INHERIT += "rm_work"
404BB_GENERATE_MIRROR_TARBALLS = "1"
Alanny Lopez1246b032018-02-24 23:34:55 -0600405DL_DIR="${ssc_dir}/bitbake_downloads"
406SSTATE_DIR="${ssc_dir}/bitbake_sharedstatecache"
Chris Smart02651712015-11-11 11:09:00 +1100407USER_CLASSES += "buildstats"
Andrew Geissler931ec672016-08-11 13:10:05 -0500408INHERIT_remove = "uninative"
Alanny Lopez1246b032018-02-24 23:34:55 -0600409TMPDIR="${build_dir}"
Chris Smart02651712015-11-11 11:09:00 +1100410EOF_CONF
411
412# Kick off a build
Michael Shepos33aeca42019-06-13 02:36:17 -0500413if [[ -n "${nice_priority}" ]]; then
Andrew Geissler2eb45d32019-09-18 21:56:44 -0500414 nice -${nice_priority} bitbake ${BITBAKE_OPTS} ${bitbake_target}
Michael Shepos33aeca42019-06-13 02:36:17 -0500415else
Andrew Geissler2eb45d32019-09-18 21:56:44 -0500416 bitbake ${BITBAKE_OPTS} ${bitbake_target}
Michael Shepos33aeca42019-06-13 02:36:17 -0500417fi
Chris Smart02651712015-11-11 11:09:00 +1100418
Alanny Lopez1246b032018-02-24 23:34:55 -0600419# Copy internal build directory into xtrct_path directory
Charles Paul Hoferb249c2c2018-09-12 12:15:13 -0500420if [[ ${xtrct_small_copy_dir} ]]; then
421 mkdir -p ${xtrct_path}/${xtrct_small_copy_dir}
422 timeout ${xtrct_copy_timeout} cp -r ${build_dir}/${xtrct_small_copy_dir}/* ${xtrct_path}/${xtrct_small_copy_dir}
423else
424 timeout ${xtrct_copy_timeout} cp -r ${build_dir}/* ${xtrct_path}
425fi
Charles Paul Hoferbe8700e2018-09-05 09:28:08 -0500426
427if [[ 0 -ne $? ]]; then
428 echo "Received a non-zero exit code from timeout"
429 exit 1
430fi
431
Chris Smart02651712015-11-11 11:09:00 +1100432EOF_SCRIPT
433
434chmod a+x ${WORKSPACE}/build.sh
435
Alanny Lopez51186882017-08-01 16:14:41 -0500436# Give the Docker image a name based on the distro,tag,arch,and target
Alanny Lopez1246b032018-02-24 23:34:55 -0600437img_name=${img_name:-openbmc/${distro}:${img_tag}-${target}-${ARCH}}
Alanny Lopez51186882017-08-01 16:14:41 -0500438
439# Build the Docker image
Alanny Lopez1246b032018-02-24 23:34:55 -0600440docker build -t ${img_name} - <<< "${Dockerfile}"
Alanny Lopez51186882017-08-01 16:14:41 -0500441
Michael Shepos3939e952019-01-16 16:00:35 -0600442# If obmc_dir or ssc_dir are ${HOME} or a subdirectory they will not be mounted
443mount_obmc_dir="-v ""${obmc_dir}"":""${obmc_dir}"" "
444mount_ssc_dir="-v ""${ssc_dir}"":""${ssc_dir}"" "
Lei YUde2a3202020-04-28 11:34:23 +0800445mount_workspace_dir="-v ""${WORKSPACE}"":""${WORKSPACE}"" "
Michael Shepos3939e952019-01-16 16:00:35 -0600446if [[ "${obmc_dir}" = "${HOME}/"* || "${obmc_dir}" = "${HOME}" ]];then
447mount_obmc_dir=""
Alanny Lopez3fbaa512017-04-24 15:46:52 -0500448fi
Michael Shepos3939e952019-01-16 16:00:35 -0600449if [[ "${ssc_dir}" = "${HOME}/"* || "${ssc_dir}" = "${HOME}" ]];then
450mount_ssc_dir=""
451fi
Lei YUde2a3202020-04-28 11:34:23 +0800452if [[ "${WORKSPACE}" = "${HOME}/"* || "${WORKSPACE}" = "${HOME}" ]];then
453mount_workspace_dir=""
454fi
Michael Shepos3939e952019-01-16 16:00:35 -0600455
456# Run the Docker container, execute the build.sh script
457docker run \
458--cap-add=sys_admin \
Michael Shepos33aeca42019-06-13 02:36:17 -0500459--cap-add=sys_nice \
Michael Shepos3939e952019-01-16 16:00:35 -0600460--net=host \
461--rm=true \
462-e WORKSPACE=${WORKSPACE} \
463-w "${HOME}" \
464-v "${HOME}":"${HOME}" \
465${mount_obmc_dir} \
466${mount_ssc_dir} \
Lei YUde2a3202020-04-28 11:34:23 +0800467${mount_workspace_dir} \
Michael Shepos3939e952019-01-16 16:00:35 -0600468--cpus="$num_cpu" \
469-t ${img_name} \
470${WORKSPACE}/build.sh
Chris Smart02651712015-11-11 11:09:00 +1100471
Alanny Lopezd32d3322017-07-18 15:21:39 -0500472# To maintain function of resources that used an older path, add a link
Alanny Lopez1246b032018-02-24 23:34:55 -0600473ln -sf ${xtrct_path}/deploy ${WORKSPACE}/deploy
Alanny Lopezd32d3322017-07-18 15:21:39 -0500474
Chris Smart02651712015-11-11 11:09:00 +1100475# Timestamp for build
Alanny Lopez0e8ad992017-06-19 15:45:23 -0500476echo "Build completed, $(date)"