blob: da691e3261e2fbdf4dd4566bad6fbef60d9915b0 [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
Alanny Lopezb0a12dd2017-04-24 16:21:47 -050018#
Alanny Lopeze08e8702018-02-24 18:07:13 -060019# Docker Image Build Variables:
Alanny Lopez1246b032018-02-24 23:34:55 -060020# BITBAKE_OPTS Set to "-c populate_sdk" or whatever other BitBake options
Alanny Lopeze08e8702018-02-24 18:07:13 -060021# you'd like to pass into the build.
22# Default: "", no options set
Alanny Lopez1246b032018-02-24 23:34:55 -060023# build_dir Path where the actual BitBake build occurs inside the
Alanny Lopeze08e8702018-02-24 18:07:13 -060024# container, path cannot be located on network storage.
25# Default: "/tmp/openbmc"
26# distro The distro used as the base image for the build image:
27# fedora|ubuntu
28# Default: "ubuntu"
Alanny Lopez1246b032018-02-24 23:34:55 -060029# img_name The name given to the target build's docker image.
Alanny Lopeze08e8702018-02-24 18:07:13 -060030# Default: "openbmc/${distro}:${imgtag}-${target}-${ARCH}"
Alanny Lopez1246b032018-02-24 23:34:55 -060031# img_tag The base docker image distro tag:
Alanny Lopeze08e8702018-02-24 18:07:13 -060032# ubuntu: latest|16.04|14.04|trusty|xenial
33# fedora: 23|24|25
34# Default: "latest"
35# target The target we aim to build:
Andrew Geisslerdd820722018-02-20 13:42:58 -060036# evb-ast2500|palmetto|qemu|qemux86-64
Andrew Geisslerdd9e1962019-08-15 08:27:28 -050037# romulus|s2600wf|witherspoon|zaius|tiogapass|gsj|mihawk
Alanny Lopeze08e8702018-02-24 18:07:13 -060038# Default: "qemu"
Andrew Geissler215e43c2019-04-23 10:57:48 -050039# no_tar Set to true if you do not want the debug tar built
40# Default: "false"
Michael Shepos33aeca42019-06-13 02:36:17 -050041# nice_priority Set nice priotity for bitbake command.
42# Nice:
43# Run with an adjusted niceness, which affects process
44# scheduling. Nice values range from -20 (most favorable
45# to the process) to 19 (least favorable to the process).
46# Default: "", nice is not used if nice_priority is not set
Alanny Lopez723fea62017-09-12 11:22:17 -050047#
Alanny Lopeze08e8702018-02-24 18:07:13 -060048# Deployment Variables:
Alanny Lopez1246b032018-02-24 23:34:55 -060049# obmc_dir Path of the OpenBMC repo directory used as a reference
Alanny Lopeze08e8702018-02-24 18:07:13 -060050# for the build inside the container.
51# Default: "${WORKSPACE}/openbmc"
Michael Shepos10afbb22019-02-06 13:33:07 -060052# xtrct_small_copy_dir
53# Directory within build_dir that should be copied to
54# xtrct_path. The directory and all parents up to, but not
55# including, build_dir will be copied. For example, if
56# build_dir is set to "/tmp/openbmc" and this is set to
57# "build/tmp", the directory at xtrct_path will have the
58# following directory structure:
59# xtrct_path
60# | - build
61# | - tmp
62# ...
63# Can also be set to the empty string to copy the entire
64# contents of build_dir to xtrct_path.
65# Default: "deploy/images".
Alanny Lopezb0a12dd2017-04-24 16:21:47 -050066#
67###############################################################################
Joel Stanley4b8b2392016-02-12 15:44:57 +103068# Trace bash processing. Set -e so when a step fails, we fail the build
Joel Stanley38c9d142016-02-16 12:31:55 +103069set -xeo pipefail
Chris Smart02651712015-11-11 11:09:00 +110070
Alanny Lopez46967702018-02-25 00:29:14 -060071# Script Variables:
72build_scripts_dir=${build_scripts_dir:-"$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"}
73http_proxy=${http_proxy:-}
74WORKSPACE=${WORKSPACE:-${HOME}/${RANDOM}${RANDOM}}
Andrew Geisslerdc1e7022018-03-26 07:54:48 -070075num_cpu=${num_cpu:-$(nproc)}
Alanny Lopez46967702018-02-25 00:29:14 -060076
77# Docker Image Build Variables:
78build_dir=${build_dir:-/tmp/openbmc}
Chris Smart02651712015-11-11 11:09:00 +110079distro=${distro:-ubuntu}
Alanny Lopez1246b032018-02-24 23:34:55 -060080img_tag=${img_tag:-latest}
Alanny Lopez46967702018-02-25 00:29:14 -060081target=${target:-qemu}
Andrew Geissler215e43c2019-04-23 10:57:48 -050082no_tar=${no_tar:-false}
Michael Shepos33aeca42019-06-13 02:36:17 -050083nice_priority=${nice_priority:-}
Alanny Lopez46967702018-02-25 00:29:14 -060084
85# Deployment variables
Alanny Lopez46967702018-02-25 00:29:14 -060086obmc_dir=${obmc_dir:-${WORKSPACE}/openbmc}
Michael Shepos3939e952019-01-16 16:00:35 -060087ssc_dir=${HOME}
Michael Shepos10afbb22019-02-06 13:33:07 -060088xtrct_small_copy_dir=${xtrct_small_copy_dir:-deploy/images}
Michael Shepos3939e952019-01-16 16:00:35 -060089xtrct_path="${obmc_dir}/build/tmp"
90xtrct_copy_timeout="300"
Alanny Lopez46967702018-02-25 00:29:14 -060091
Chris Smartc3522542016-02-16 11:59:36 +110092PROXY=""
Chris Smart02651712015-11-11 11:09:00 +110093
Alanny Lopezccc650e2017-04-24 15:14:20 -050094# Determine the architecture
95ARCH=$(uname -m)
96
97# Determine the prefix of the Dockerfile's base image
98case ${ARCH} in
99 "ppc64le")
100 DOCKER_BASE="ppc64le/"
101 ;;
102 "x86_64")
103 DOCKER_BASE=""
104 ;;
105 *)
106 echo "Unsupported system architecture(${ARCH}) found for docker image"
107 exit 1
108esac
Andrew Geissler11abbbe2016-08-14 19:39:47 -0500109
Chris Smart02651712015-11-11 11:09:00 +1100110# Timestamp for job
111echo "Build started, $(date)"
112
Alanny Lopez1246b032018-02-24 23:34:55 -0600113# If the obmc_dir directory doesn't exist clone it in
114if [ ! -d ${obmc_dir} ]; then
115 echo "Clone in openbmc master to ${obmc_dir}"
116 git clone https://github.com/openbmc/openbmc ${obmc_dir}
Andrew Geisslerc3c35202016-08-16 08:47:50 -0500117fi
118
Alanny Lopez1246b032018-02-24 23:34:55 -0600119# Make and chown the xtrct_path directory to avoid permission errors
120if [ ! -d ${xtrct_path} ]; then
121 mkdir -p ${xtrct_path}
Alanny Lopez723fea62017-09-12 11:22:17 -0500122fi
Alanny Lopez1246b032018-02-24 23:34:55 -0600123chown ${UID}:${GROUPS} ${xtrct_path}
Alanny Lopez723fea62017-09-12 11:22:17 -0500124
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500125# Work out what build target we should be running and set BitBake command
Michael Shepos2de03e92018-11-07 15:54:56 -0600126MACHINE=""
Chris Smart02651712015-11-11 11:09:00 +1100127case ${target} in
Chris Smart02651712015-11-11 11:09:00 +1100128 palmetto)
Brad Bishop7161a172018-10-05 16:48:06 -0400129 LAYER_DIR="meta-ibm/meta-palmetto"
Chris Smart02651712015-11-11 11:09:00 +1100130 ;;
Adriana Kobylak4ec7db02019-05-07 12:44:30 -0500131 swift)
132 LAYER_DIR="meta-ibm/meta-witherspoon"
133 MACHINE="swift"
134 ;;
Andrew Geisslerdd9e1962019-08-15 08:27:28 -0500135 mihawk)
136 LAYER_DIR="meta-ibm/meta-witherspoon"
137 MACHINE="mihawk"
138 ;;
Joel Stanley0e077202016-06-28 16:42:45 +0930139 witherspoon)
Brad Bishop7161a172018-10-05 16:48:06 -0400140 LAYER_DIR="meta-ibm/meta-witherspoon"
Joel Stanley0e077202016-06-28 16:42:45 +0930141 ;;
Adriana Kobylakfcba1c32019-05-10 11:33:37 -0500142 witherspoon-128)
143 LAYER_DIR="meta-ibm/meta-witherspoon"
144 MACHINE="witherspoon-128"
145 ;;
Joel Stanley0e077202016-06-28 16:42:45 +0930146 evb-ast2500)
Brad Bishop7161a172018-10-05 16:48:06 -0400147 LAYER_DIR="meta-evb/meta-evb-aspeed/meta-evb-ast2500"
Joel Stanley0e077202016-06-28 16:42:45 +0930148 ;;
Ed Tanous6dc40d92018-07-30 11:13:36 -0700149 s2600wf)
Brad Bishop7161a172018-10-05 16:48:06 -0400150 LAYER_DIR="meta-intel/meta-s2600wf"
Ed Tanous6dc40d92018-07-30 11:13:36 -0700151 ;;
Joel Stanley915381f2016-11-01 16:58:59 +1030152 zaius)
Brad Bishop7161a172018-10-05 16:48:06 -0400153 LAYER_DIR="meta-ingrasys/meta-zaius"
Joel Stanley915381f2016-11-01 16:58:59 +1030154 ;;
155 romulus)
Brad Bishop7161a172018-10-05 16:48:06 -0400156 LAYER_DIR="meta-ibm/meta-romulus"
Joel Stanley915381f2016-11-01 16:58:59 +1030157 ;;
Chris Smart02651712015-11-11 11:09:00 +1100158 qemu)
Brad Bishop7161a172018-10-05 16:48:06 -0400159 LAYER_DIR="meta-phosphor"
Michael Shepos2de03e92018-11-07 15:54:56 -0600160 # MACHINE defaults to `qemuarm` in this layer, no change necessary
Chris Smart02651712015-11-11 11:09:00 +1100161 ;;
Andrew Geisslerdd820722018-02-20 13:42:58 -0600162 qemux86-64)
Michael Shepos2de03e92018-11-07 15:54:56 -0600163 LAYER_DIR="meta-phosphor"
164 # MACHINE defaults to `qemuarm` in this layer, change to `qemux86-64`
165 MACHINE="qemux86-64"
Andrew Geisslerdd820722018-02-20 13:42:58 -0600166 ;;
Vijay Khemka4c5b12e2019-01-23 14:50:09 -0800167 tiogapass)
168 LAYER_DIR="meta-facebook/meta-tiogapass"
169 ;;
Andrew Geissler9eef7282019-05-10 13:28:09 -0500170 gsj)
171 LAYER_DIR="meta-quanta/meta-gsj"
172 ;;
Chris Smart02651712015-11-11 11:09:00 +1100173 *)
174 exit 1
175 ;;
176esac
177
Brad Bishop7161a172018-10-05 16:48:06 -0400178BITBAKE_CMD="TEMPLATECONF=${LAYER_DIR}/conf source oe-init-build-env"
179
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500180# Configure Docker build
Chris Smart02651712015-11-11 11:09:00 +1100181if [[ "${distro}" == fedora ]];then
182
183 if [[ -n "${http_proxy}" ]]; then
184 PROXY="RUN echo \"proxy=${http_proxy}\" >> /etc/dnf/dnf.conf"
185 fi
186
187 Dockerfile=$(cat << EOF
Alanny Lopez1246b032018-02-24 23:34:55 -0600188 FROM ${DOCKER_BASE}${distro}:${img_tag}
Chris Smart02651712015-11-11 11:09:00 +1100189
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500190 ${PROXY}
Chris Smart02651712015-11-11 11:09:00 +1100191
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500192 # Set the locale
193 RUN locale-gen en_US.UTF-8
194 ENV LANG en_US.UTF-8
195 ENV LANGUAGE en_US:en
196 ENV LC_ALL en_US.UTF-8
Saqib Khan75635122017-03-23 10:57:34 -0500197
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500198 RUN dnf --refresh install -y \
199 bzip2 \
200 chrpath \
201 cpio \
202 diffstat \
203 findutils \
204 gcc \
205 gcc-c++ \
206 git \
207 make \
208 patch \
209 perl-bignum \
210 perl-Data-Dumper \
211 perl-Thread-Queue \
212 python-devel \
213 python3-devel \
214 SDL-devel \
215 socat \
216 subversion \
217 tar \
218 texinfo \
219 wget \
Saqib Khan5158a322017-10-23 11:31:24 -0500220 which \
221 iputils-ping
Chris Smart02651712015-11-11 11:09:00 +1100222
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500223 RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
224 RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
Chris Smart02651712015-11-11 11:09:00 +1100225
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500226 USER ${USER}
227 ENV HOME ${HOME}
228 RUN /bin/bash
Chris Smart02651712015-11-11 11:09:00 +1100229EOF
230)
231
Alanny Lopezccc650e2017-04-24 15:14:20 -0500232elif [[ "${distro}" == ubuntu ]]; then
233
Chris Smart02651712015-11-11 11:09:00 +1100234 if [[ -n "${http_proxy}" ]]; then
235 PROXY="RUN echo \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy"
236 fi
237
238 Dockerfile=$(cat << EOF
Alanny Lopez1246b032018-02-24 23:34:55 -0600239 FROM ${DOCKER_BASE}${distro}:${img_tag}
Chris Smart02651712015-11-11 11:09:00 +1100240
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500241 ${PROXY}
Chris Smart02651712015-11-11 11:09:00 +1100242
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500243 ENV DEBIAN_FRONTEND noninteractive
Saqib Khan75635122017-03-23 10:57:34 -0500244
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500245 RUN apt-get update && apt-get install -yy \
246 build-essential \
247 chrpath \
248 debianutils \
249 diffstat \
250 gawk \
251 git \
252 libdata-dumper-simple-perl \
253 libsdl1.2-dev \
254 libthread-queue-any-perl \
Alanny Lopez27af3a02017-05-26 10:49:06 -0500255 locales \
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500256 python \
257 python3 \
258 socat \
259 subversion \
260 texinfo \
261 cpio \
Saqib Khan5158a322017-10-23 11:31:24 -0500262 wget \
263 iputils-ping
Chris Smart02651712015-11-11 11:09:00 +1100264
Alanny Lopez27af3a02017-05-26 10:49:06 -0500265 # Set the locale
266 RUN locale-gen en_US.UTF-8
267 ENV LANG en_US.UTF-8
268 ENV LANGUAGE en_US:en
269 ENV LC_ALL en_US.UTF-8
270
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500271 RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
272 RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
Chris Smartd30c5902016-03-01 15:00:54 +1100273
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500274 USER ${USER}
275 ENV HOME ${HOME}
276 RUN /bin/bash
Chris Smart02651712015-11-11 11:09:00 +1100277EOF
278)
279fi
280
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500281# Create the Docker run script
Chris Smart02651712015-11-11 11:09:00 +1100282export PROXY_HOST=${http_proxy/#http*:\/\/}
283export PROXY_HOST=${PROXY_HOST/%:[0-9]*}
284export PROXY_PORT=${http_proxy/#http*:\/\/*:}
285
Chris Smart01d2b962015-11-11 18:05:30 +1100286mkdir -p ${WORKSPACE}
Chris Smart02651712015-11-11 11:09:00 +1100287
Andrew Geissler215e43c2019-04-23 10:57:48 -0500288# Determine command for bitbake image build
289bitbake_image="obmc-phosphor-image"
290if [ $no_tar = "false" ]; then
291 bitbake_image="${bitbake_image} obmc-phosphor-debug-tarball"
292fi
293
Chris Smart01d2b962015-11-11 18:05:30 +1100294cat > "${WORKSPACE}"/build.sh << EOF_SCRIPT
Chris Smart02651712015-11-11 11:09:00 +1100295#!/bin/bash
296
Joel Stanley38c9d142016-02-16 12:31:55 +1030297set -xeo pipefail
Chris Smart02651712015-11-11 11:09:00 +1100298
Alanny Lopez723fea62017-09-12 11:22:17 -0500299# Go into the OpenBMC directory, the build will handle changing directories
Alanny Lopez1246b032018-02-24 23:34:55 -0600300cd ${obmc_dir}
Chris Smart02651712015-11-11 11:09:00 +1100301
302# Set up proxies
303export ftp_proxy=${http_proxy}
304export http_proxy=${http_proxy}
305export https_proxy=${http_proxy}
306
Chris Smart01d2b962015-11-11 18:05:30 +1100307mkdir -p ${WORKSPACE}/bin
Chris Smart02651712015-11-11 11:09:00 +1100308
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500309# Configure proxies for BitBake
Chris Smart02651712015-11-11 11:09:00 +1100310if [[ -n "${http_proxy}" ]]; then
311
Chris Smartd30c5902016-03-01 15:00:54 +1100312 cat > ${WORKSPACE}/bin/git-proxy << \EOF_GIT
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500313 #!/bin/bash
314 # \$1 = hostname, \$2 = port
315 PROXY=${PROXY_HOST}
316 PROXY_PORT=${PROXY_PORT}
317 exec socat STDIO PROXY:\${PROXY}:\${1}:\${2},proxyport=\${PROXY_PORT}
Chris Smart02651712015-11-11 11:09:00 +1100318EOF_GIT
319
Chris Smart01d2b962015-11-11 18:05:30 +1100320 chmod a+x ${WORKSPACE}/bin/git-proxy
321 export PATH=${WORKSPACE}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH}
Chris Smart02651712015-11-11 11:09:00 +1100322 git config core.gitProxy git-proxy
323
324 mkdir -p ~/.subversion
325
326 cat > ~/.subversion/servers << EOF_SVN
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500327 [global]
328 http-proxy-host = ${PROXY_HOST}
329 http-proxy-port = ${PROXY_PORT}
Chris Smart02651712015-11-11 11:09:00 +1100330EOF_SVN
331fi
332
333# Source our build env
334${BITBAKE_CMD}
335
Adriana Kobylak62a1b102019-05-07 12:14:45 -0500336# Export MACHINE name when given for build target
Michael Shepos2de03e92018-11-07 15:54:56 -0600337if [[ -n "${MACHINE}" ]]; then
Adriana Kobylak5f0d1aa2019-07-08 14:16:15 -0500338 export MACHINE="${MACHINE}"
Michael Shepos2de03e92018-11-07 15:54:56 -0600339fi
340
Alanny Lopezeaa2eae2017-04-24 14:55:07 -0500341# Custom BitBake config settings
Chris Smart02651712015-11-11 11:09:00 +1100342cat >> conf/local.conf << EOF_CONF
Chris Smartc650c202015-11-25 15:58:53 +1100343BB_NUMBER_THREADS = "$(nproc)"
344PARALLEL_MAKE = "-j$(nproc)"
Chris Smart02651712015-11-11 11:09:00 +1100345INHERIT += "rm_work"
346BB_GENERATE_MIRROR_TARBALLS = "1"
Alanny Lopez1246b032018-02-24 23:34:55 -0600347DL_DIR="${ssc_dir}/bitbake_downloads"
348SSTATE_DIR="${ssc_dir}/bitbake_sharedstatecache"
Chris Smart02651712015-11-11 11:09:00 +1100349USER_CLASSES += "buildstats"
Andrew Geissler931ec672016-08-11 13:10:05 -0500350INHERIT_remove = "uninative"
Alanny Lopez1246b032018-02-24 23:34:55 -0600351TMPDIR="${build_dir}"
Chris Smart02651712015-11-11 11:09:00 +1100352EOF_CONF
353
354# Kick off a build
Michael Shepos33aeca42019-06-13 02:36:17 -0500355if [[ -n "${nice_priority}" ]]; then
356 nice -${nice_priority} bitbake ${BITBAKE_OPTS} ${bitbake_image}
357else
358 bitbake ${BITBAKE_OPTS} ${bitbake_image}
359fi
Chris Smart02651712015-11-11 11:09:00 +1100360
Alanny Lopez1246b032018-02-24 23:34:55 -0600361# Copy internal build directory into xtrct_path directory
Charles Paul Hoferb249c2c2018-09-12 12:15:13 -0500362if [[ ${xtrct_small_copy_dir} ]]; then
363 mkdir -p ${xtrct_path}/${xtrct_small_copy_dir}
364 timeout ${xtrct_copy_timeout} cp -r ${build_dir}/${xtrct_small_copy_dir}/* ${xtrct_path}/${xtrct_small_copy_dir}
365else
366 timeout ${xtrct_copy_timeout} cp -r ${build_dir}/* ${xtrct_path}
367fi
Charles Paul Hoferbe8700e2018-09-05 09:28:08 -0500368
369if [[ 0 -ne $? ]]; then
370 echo "Received a non-zero exit code from timeout"
371 exit 1
372fi
373
Chris Smart02651712015-11-11 11:09:00 +1100374EOF_SCRIPT
375
376chmod a+x ${WORKSPACE}/build.sh
377
Alanny Lopez51186882017-08-01 16:14:41 -0500378# Give the Docker image a name based on the distro,tag,arch,and target
Alanny Lopez1246b032018-02-24 23:34:55 -0600379img_name=${img_name:-openbmc/${distro}:${img_tag}-${target}-${ARCH}}
Alanny Lopez51186882017-08-01 16:14:41 -0500380
381# Build the Docker image
Alanny Lopez1246b032018-02-24 23:34:55 -0600382docker build -t ${img_name} - <<< "${Dockerfile}"
Alanny Lopez51186882017-08-01 16:14:41 -0500383
Michael Shepos3939e952019-01-16 16:00:35 -0600384# If obmc_dir or ssc_dir are ${HOME} or a subdirectory they will not be mounted
385mount_obmc_dir="-v ""${obmc_dir}"":""${obmc_dir}"" "
386mount_ssc_dir="-v ""${ssc_dir}"":""${ssc_dir}"" "
387if [[ "${obmc_dir}" = "${HOME}/"* || "${obmc_dir}" = "${HOME}" ]];then
388mount_obmc_dir=""
Alanny Lopez3fbaa512017-04-24 15:46:52 -0500389fi
Michael Shepos3939e952019-01-16 16:00:35 -0600390if [[ "${ssc_dir}" = "${HOME}/"* || "${ssc_dir}" = "${HOME}" ]];then
391mount_ssc_dir=""
392fi
393
394# Run the Docker container, execute the build.sh script
395docker run \
396--cap-add=sys_admin \
Michael Shepos33aeca42019-06-13 02:36:17 -0500397--cap-add=sys_nice \
Michael Shepos3939e952019-01-16 16:00:35 -0600398--net=host \
399--rm=true \
400-e WORKSPACE=${WORKSPACE} \
401-w "${HOME}" \
402-v "${HOME}":"${HOME}" \
403${mount_obmc_dir} \
404${mount_ssc_dir} \
405--cpus="$num_cpu" \
406-t ${img_name} \
407${WORKSPACE}/build.sh
Chris Smart02651712015-11-11 11:09:00 +1100408
Alanny Lopezd32d3322017-07-18 15:21:39 -0500409# To maintain function of resources that used an older path, add a link
Alanny Lopez1246b032018-02-24 23:34:55 -0600410ln -sf ${xtrct_path}/deploy ${WORKSPACE}/deploy
Alanny Lopezd32d3322017-07-18 15:21:39 -0500411
Chris Smart02651712015-11-11 11:09:00 +1100412# Timestamp for build
Alanny Lopez0e8ad992017-06-19 15:45:23 -0500413echo "Build completed, $(date)"