Alanny Lopez | 56fc36a | 2017-07-27 13:55:44 -0500 | [diff] [blame] | 1 | #!/bin/bash |
Alanny Lopez | b0a12dd | 2017-04-24 16:21:47 -0500 | [diff] [blame] | 2 | ############################################################################### |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 3 | # |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 4 | # This build script is for running the OpenBMC builds as Docker containers. |
Alanny Lopez | 3fbaa51 | 2017-04-24 15:46:52 -0500 | [diff] [blame] | 5 | # |
Alanny Lopez | b0a12dd | 2017-04-24 16:21:47 -0500 | [diff] [blame] | 6 | ############################################################################### |
| 7 | # |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 8 | # 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 Geissler | dc1e702 | 2018-03-26 07:54:48 -0700 | [diff] [blame] | 16 | # num_cpu Number of cpu's to give bitbake, default is total amount |
| 17 | # in system |
Lei YU | 237bd08 | 2020-09-22 11:15:08 +0800 | [diff] [blame] | 18 | # UBUNTU_MIRROR [optional] The URL of a mirror of Ubuntu to override the |
| 19 | # default ones in /etc/apt/sources.list |
Lei YU | 39587ad | 2020-06-17 19:55:54 +0800 | [diff] [blame] | 20 | # default is empty, and no mirror is used. |
Lei YU | 237bd08 | 2020-09-22 11:15:08 +0800 | [diff] [blame] | 21 | # ENV_LOCAL_CONF [optional] The environment variables to inject into the |
| 22 | # build, which will be written into local.conf. |
| 23 | # default is empty. |
Alanny Lopez | b0a12dd | 2017-04-24 16:21:47 -0500 | [diff] [blame] | 24 | # |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 25 | # Docker Image Build Variables: |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 26 | # BITBAKE_OPTS Set to "-c populate_sdk" or whatever other BitBake options |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 27 | # you'd like to pass into the build. |
| 28 | # Default: "", no options set |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 29 | # build_dir Path where the actual BitBake build occurs inside the |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 30 | # container, path cannot be located on network storage. |
Andrew Geissler | bd11f69 | 2020-09-04 09:36:28 -0500 | [diff] [blame] | 31 | # Default: "$WORKSPACE/build" |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 32 | # distro The distro used as the base image for the build image: |
| 33 | # fedora|ubuntu |
| 34 | # Default: "ubuntu" |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 35 | # img_name The name given to the target build's docker image. |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 36 | # Default: "openbmc/${distro}:${imgtag}-${target}-${ARCH}" |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 37 | # img_tag The base docker image distro tag: |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 38 | # ubuntu: latest|16.04|14.04|trusty|xenial |
| 39 | # fedora: 23|24|25 |
| 40 | # Default: "latest" |
| 41 | # target The target we aim to build: |
Andrew Geissler | dd82072 | 2018-02-20 13:42:58 -0600 | [diff] [blame] | 42 | # evb-ast2500|palmetto|qemu|qemux86-64 |
Andrew Geissler | dd9e196 | 2019-08-15 08:27:28 -0500 | [diff] [blame] | 43 | # romulus|s2600wf|witherspoon|zaius|tiogapass|gsj|mihawk |
Andrew Geissler | f86b4a8 | 2019-09-27 15:21:11 -0500 | [diff] [blame] | 44 | # witherspoon-tacoma|rainier |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 45 | # Default: "qemu" |
Andrew Geissler | 215e43c | 2019-04-23 10:57:48 -0500 | [diff] [blame] | 46 | # no_tar Set to true if you do not want the debug tar built |
| 47 | # Default: "false" |
Michael Shepos | 33aeca4 | 2019-06-13 02:36:17 -0500 | [diff] [blame] | 48 | # nice_priority Set nice priotity for bitbake command. |
| 49 | # Nice: |
| 50 | # Run with an adjusted niceness, which affects process |
| 51 | # scheduling. Nice values range from -20 (most favorable |
| 52 | # to the process) to 19 (least favorable to the process). |
| 53 | # Default: "", nice is not used if nice_priority is not set |
Alanny Lopez | 723fea6 | 2017-09-12 11:22:17 -0500 | [diff] [blame] | 54 | # |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 55 | # Deployment Variables: |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 56 | # obmc_dir Path of the OpenBMC repo directory used as a reference |
Alanny Lopez | e08e870 | 2018-02-24 18:07:13 -0600 | [diff] [blame] | 57 | # for the build inside the container. |
| 58 | # Default: "${WORKSPACE}/openbmc" |
Lei YU | df0e45c | 2020-09-03 11:25:57 +0800 | [diff] [blame] | 59 | # ssc_dir Path of the OpenBMC shared directory that contains the |
| 60 | # downloads dir and the sstate dir. |
| 61 | # Default: "${HOME}" |
Michael Shepos | 10afbb2 | 2019-02-06 13:33:07 -0600 | [diff] [blame] | 62 | # xtrct_small_copy_dir |
| 63 | # Directory within build_dir that should be copied to |
| 64 | # xtrct_path. The directory and all parents up to, but not |
| 65 | # including, build_dir will be copied. For example, if |
| 66 | # build_dir is set to "/tmp/openbmc" and this is set to |
| 67 | # "build/tmp", the directory at xtrct_path will have the |
| 68 | # following directory structure: |
| 69 | # xtrct_path |
| 70 | # | - build |
| 71 | # | - tmp |
| 72 | # ... |
| 73 | # Can also be set to the empty string to copy the entire |
| 74 | # contents of build_dir to xtrct_path. |
| 75 | # Default: "deploy/images". |
Alanny Lopez | b0a12dd | 2017-04-24 16:21:47 -0500 | [diff] [blame] | 76 | # |
| 77 | ############################################################################### |
Joel Stanley | 4b8b239 | 2016-02-12 15:44:57 +1030 | [diff] [blame] | 78 | # Trace bash processing. Set -e so when a step fails, we fail the build |
Joel Stanley | 38c9d14 | 2016-02-16 12:31:55 +1030 | [diff] [blame] | 79 | set -xeo pipefail |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 80 | |
Alanny Lopez | 4696770 | 2018-02-25 00:29:14 -0600 | [diff] [blame] | 81 | # Script Variables: |
| 82 | build_scripts_dir=${build_scripts_dir:-"$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"} |
| 83 | http_proxy=${http_proxy:-} |
| 84 | WORKSPACE=${WORKSPACE:-${HOME}/${RANDOM}${RANDOM}} |
Andrew Geissler | dc1e702 | 2018-03-26 07:54:48 -0700 | [diff] [blame] | 85 | num_cpu=${num_cpu:-$(nproc)} |
Lei YU | 39587ad | 2020-06-17 19:55:54 +0800 | [diff] [blame] | 86 | UBUNTU_MIRROR=${UBUNTU_MIRROR:-""} |
Lei YU | 237bd08 | 2020-09-22 11:15:08 +0800 | [diff] [blame] | 87 | ENV_LOCAL_CONF=${ENV_LOCAL_CONF:-""} |
Alanny Lopez | 4696770 | 2018-02-25 00:29:14 -0600 | [diff] [blame] | 88 | |
| 89 | # Docker Image Build Variables: |
Andrew Geissler | bd11f69 | 2020-09-04 09:36:28 -0500 | [diff] [blame] | 90 | build_dir=${build_dir:-${WORKSPACE}/build} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 91 | distro=${distro:-ubuntu} |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 92 | img_tag=${img_tag:-latest} |
Alanny Lopez | 4696770 | 2018-02-25 00:29:14 -0600 | [diff] [blame] | 93 | target=${target:-qemu} |
Andrew Geissler | 215e43c | 2019-04-23 10:57:48 -0500 | [diff] [blame] | 94 | no_tar=${no_tar:-false} |
Michael Shepos | 33aeca4 | 2019-06-13 02:36:17 -0500 | [diff] [blame] | 95 | nice_priority=${nice_priority:-} |
Alanny Lopez | 4696770 | 2018-02-25 00:29:14 -0600 | [diff] [blame] | 96 | |
| 97 | # Deployment variables |
Alanny Lopez | 4696770 | 2018-02-25 00:29:14 -0600 | [diff] [blame] | 98 | obmc_dir=${obmc_dir:-${WORKSPACE}/openbmc} |
Lei YU | df0e45c | 2020-09-03 11:25:57 +0800 | [diff] [blame] | 99 | ssc_dir=${ssc_dir:-${HOME}} |
Michael Shepos | 10afbb2 | 2019-02-06 13:33:07 -0600 | [diff] [blame] | 100 | xtrct_small_copy_dir=${xtrct_small_copy_dir:-deploy/images} |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 101 | xtrct_path="${obmc_dir}/build/tmp" |
| 102 | xtrct_copy_timeout="300" |
Alanny Lopez | 4696770 | 2018-02-25 00:29:14 -0600 | [diff] [blame] | 103 | |
Andrew Geissler | 2eb45d3 | 2019-09-18 21:56:44 -0500 | [diff] [blame] | 104 | bitbake_target="obmc-phosphor-image" |
Chris Smart | c352254 | 2016-02-16 11:59:36 +1100 | [diff] [blame] | 105 | PROXY="" |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 106 | |
Lei YU | 39587ad | 2020-06-17 19:55:54 +0800 | [diff] [blame] | 107 | MIRROR="" |
| 108 | if [[ -n "${UBUNTU_MIRROR}" ]]; then |
| 109 | MIRROR="RUN echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME) main restricted universe multiverse\" > /etc/apt/sources.list && \ |
| 110 | echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-updates main restricted universe multiverse\" >> /etc/apt/sources.list && \ |
| 111 | echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-security main restricted universe multiverse\" >> /etc/apt/sources.list && \ |
| 112 | echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-proposed main restricted universe multiverse\" >> /etc/apt/sources.list && \ |
| 113 | echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-backports main restricted universe multiverse\" >> /etc/apt/sources.list" |
| 114 | fi |
| 115 | |
Alanny Lopez | ccc650e | 2017-04-24 15:14:20 -0500 | [diff] [blame] | 116 | # Determine the architecture |
| 117 | ARCH=$(uname -m) |
| 118 | |
| 119 | # Determine the prefix of the Dockerfile's base image |
| 120 | case ${ARCH} in |
| 121 | "ppc64le") |
| 122 | DOCKER_BASE="ppc64le/" |
| 123 | ;; |
| 124 | "x86_64") |
| 125 | DOCKER_BASE="" |
| 126 | ;; |
| 127 | *) |
| 128 | echo "Unsupported system architecture(${ARCH}) found for docker image" |
| 129 | exit 1 |
| 130 | esac |
Andrew Geissler | 11abbbe | 2016-08-14 19:39:47 -0500 | [diff] [blame] | 131 | |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 132 | # Timestamp for job |
| 133 | echo "Build started, $(date)" |
| 134 | |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 135 | # If the obmc_dir directory doesn't exist clone it in |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 136 | if [ ! -d "${obmc_dir}" ]; then |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 137 | echo "Clone in openbmc master to ${obmc_dir}" |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 138 | git clone https://github.com/openbmc/openbmc "${obmc_dir}" |
Andrew Geissler | c3c3520 | 2016-08-16 08:47:50 -0500 | [diff] [blame] | 139 | fi |
| 140 | |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 141 | # Make and chown the xtrct_path directory to avoid permission errors |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 142 | if [ ! -d "${xtrct_path}" ]; then |
| 143 | mkdir -p "${xtrct_path}" |
Alanny Lopez | 723fea6 | 2017-09-12 11:22:17 -0500 | [diff] [blame] | 144 | fi |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 145 | chown "${UID}:${GROUPS[0]}" "${xtrct_path}" |
Alanny Lopez | 723fea6 | 2017-09-12 11:22:17 -0500 | [diff] [blame] | 146 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 147 | # Work out what build target we should be running and set BitBake command |
Michael Shepos | 2de03e9 | 2018-11-07 15:54:56 -0600 | [diff] [blame] | 148 | MACHINE="" |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 149 | case ${target} in |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 150 | palmetto) |
Brad Bishop | 7161a17 | 2018-10-05 16:48:06 -0400 | [diff] [blame] | 151 | LAYER_DIR="meta-ibm/meta-palmetto" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 152 | MACHINE="palmetto" |
| 153 | DISTRO="openbmc-openpower" |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 154 | ;; |
Adriana Kobylak | 4ec7db0 | 2019-05-07 12:44:30 -0500 | [diff] [blame] | 155 | swift) |
Brad Bishop | f713bf4 | 2019-11-13 20:23:32 -0500 | [diff] [blame] | 156 | LAYER_DIR="meta-ibm" |
Adriana Kobylak | 4ec7db0 | 2019-05-07 12:44:30 -0500 | [diff] [blame] | 157 | MACHINE="swift" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 158 | DISTRO="openbmc-witherspoon" |
Adriana Kobylak | 4ec7db0 | 2019-05-07 12:44:30 -0500 | [diff] [blame] | 159 | ;; |
Andrew Geissler | dd9e196 | 2019-08-15 08:27:28 -0500 | [diff] [blame] | 160 | mihawk) |
Brad Bishop | f713bf4 | 2019-11-13 20:23:32 -0500 | [diff] [blame] | 161 | LAYER_DIR="meta-ibm" |
Andrew Geissler | dd9e196 | 2019-08-15 08:27:28 -0500 | [diff] [blame] | 162 | MACHINE="mihawk" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 163 | DISTRO="openbmc-witherspoon" |
Andrew Geissler | dd9e196 | 2019-08-15 08:27:28 -0500 | [diff] [blame] | 164 | ;; |
Joel Stanley | 0e07720 | 2016-06-28 16:42:45 +0930 | [diff] [blame] | 165 | witherspoon) |
Brad Bishop | f713bf4 | 2019-11-13 20:23:32 -0500 | [diff] [blame] | 166 | LAYER_DIR="meta-ibm" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 167 | MACHINE="witherspoon" |
| 168 | DISTRO="openbmc-witherspoon" |
Joel Stanley | 0e07720 | 2016-06-28 16:42:45 +0930 | [diff] [blame] | 169 | ;; |
Adriana Kobylak | fcba1c3 | 2019-05-10 11:33:37 -0500 | [diff] [blame] | 170 | witherspoon-128) |
Brad Bishop | f713bf4 | 2019-11-13 20:23:32 -0500 | [diff] [blame] | 171 | LAYER_DIR="meta-ibm" |
Adriana Kobylak | fcba1c3 | 2019-05-10 11:33:37 -0500 | [diff] [blame] | 172 | MACHINE="witherspoon-128" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 173 | DISTRO="openbmc-witherspoon" |
Adriana Kobylak | fcba1c3 | 2019-05-10 11:33:37 -0500 | [diff] [blame] | 174 | ;; |
Andrew Geissler | 2eb45d3 | 2019-09-18 21:56:44 -0500 | [diff] [blame] | 175 | witherspoon-tacoma) |
Brad Bishop | f713bf4 | 2019-11-13 20:23:32 -0500 | [diff] [blame] | 176 | LAYER_DIR="meta-ibm" |
Andrew Geissler | 2eb45d3 | 2019-09-18 21:56:44 -0500 | [diff] [blame] | 177 | MACHINE="witherspoon-tacoma" |
| 178 | DISTRO="openbmc-openpower" |
Andrew Geissler | 2eb45d3 | 2019-09-18 21:56:44 -0500 | [diff] [blame] | 179 | ;; |
Andrew Geissler | f86b4a8 | 2019-09-27 15:21:11 -0500 | [diff] [blame] | 180 | rainier) |
Brad Bishop | f713bf4 | 2019-11-13 20:23:32 -0500 | [diff] [blame] | 181 | LAYER_DIR="meta-ibm" |
Andrew Geissler | f86b4a8 | 2019-09-27 15:21:11 -0500 | [diff] [blame] | 182 | MACHINE="rainier" |
| 183 | DISTRO="openbmc-openpower" |
| 184 | ;; |
Joel Stanley | 0e07720 | 2016-06-28 16:42:45 +0930 | [diff] [blame] | 185 | evb-ast2500) |
Brad Bishop | 7161a17 | 2018-10-05 16:48:06 -0400 | [diff] [blame] | 186 | LAYER_DIR="meta-evb/meta-evb-aspeed/meta-evb-ast2500" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 187 | MACHINE="evb-ast2500" |
| 188 | DISTRO="openbmc-phosphor" |
Joel Stanley | 0e07720 | 2016-06-28 16:42:45 +0930 | [diff] [blame] | 189 | ;; |
Ed Tanous | 6dc40d9 | 2018-07-30 11:13:36 -0700 | [diff] [blame] | 190 | s2600wf) |
Brad Bishop | 7161a17 | 2018-10-05 16:48:06 -0400 | [diff] [blame] | 191 | LAYER_DIR="meta-intel/meta-s2600wf" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 192 | MACHINE="s2600wf" |
| 193 | DISTRO="openbmc-phosphor" |
Ed Tanous | 6dc40d9 | 2018-07-30 11:13:36 -0700 | [diff] [blame] | 194 | ;; |
Joel Stanley | 915381f | 2016-11-01 16:58:59 +1030 | [diff] [blame] | 195 | zaius) |
Brad Bishop | 7161a17 | 2018-10-05 16:48:06 -0400 | [diff] [blame] | 196 | LAYER_DIR="meta-ingrasys/meta-zaius" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 197 | MACHINE="zaius" |
| 198 | DISTRO="openbmc-openpower" |
Joel Stanley | 915381f | 2016-11-01 16:58:59 +1030 | [diff] [blame] | 199 | ;; |
| 200 | romulus) |
Brad Bishop | 7161a17 | 2018-10-05 16:48:06 -0400 | [diff] [blame] | 201 | LAYER_DIR="meta-ibm/meta-romulus" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 202 | MACHINE="romulus" |
| 203 | DISTRO="openbmc-openpower" |
Joel Stanley | 915381f | 2016-11-01 16:58:59 +1030 | [diff] [blame] | 204 | ;; |
Vijay Khemka | 4c5b12e | 2019-01-23 14:50:09 -0800 | [diff] [blame] | 205 | tiogapass) |
| 206 | LAYER_DIR="meta-facebook/meta-tiogapass" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 207 | MACHINE="tiogapass" |
| 208 | DISTRO="openbmc-phosphor" |
Vijay Khemka | 4c5b12e | 2019-01-23 14:50:09 -0800 | [diff] [blame] | 209 | ;; |
Andrew Geissler | 9eef728 | 2019-05-10 13:28:09 -0500 | [diff] [blame] | 210 | gsj) |
| 211 | LAYER_DIR="meta-quanta/meta-gsj" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 212 | MACHINE="gsj" |
Andrew Geissler | 8565d2a | 2020-04-20 15:22:14 -0500 | [diff] [blame] | 213 | # Use default DISTRO from layer |
Andrew Geissler | 9eef728 | 2019-05-10 13:28:09 -0500 | [diff] [blame] | 214 | ;; |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 215 | *) |
| 216 | exit 1 |
| 217 | ;; |
| 218 | esac |
| 219 | |
Brad Bishop | 7161a17 | 2018-10-05 16:48:06 -0400 | [diff] [blame] | 220 | BITBAKE_CMD="TEMPLATECONF=${LAYER_DIR}/conf source oe-init-build-env" |
| 221 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 222 | # Configure Docker build |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 223 | if [[ "${distro}" == fedora ]];then |
| 224 | |
| 225 | if [[ -n "${http_proxy}" ]]; then |
| 226 | PROXY="RUN echo \"proxy=${http_proxy}\" >> /etc/dnf/dnf.conf" |
| 227 | fi |
| 228 | |
| 229 | Dockerfile=$(cat << EOF |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 230 | FROM ${DOCKER_BASE}${distro}:${img_tag} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 231 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 232 | ${PROXY} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 233 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 234 | RUN dnf --refresh install -y \ |
| 235 | bzip2 \ |
| 236 | chrpath \ |
| 237 | cpio \ |
| 238 | diffstat \ |
| 239 | findutils \ |
| 240 | gcc \ |
| 241 | gcc-c++ \ |
| 242 | git \ |
| 243 | make \ |
| 244 | patch \ |
| 245 | perl-bignum \ |
| 246 | perl-Data-Dumper \ |
| 247 | perl-Thread-Queue \ |
| 248 | python-devel \ |
| 249 | python3-devel \ |
| 250 | SDL-devel \ |
| 251 | socat \ |
| 252 | subversion \ |
| 253 | tar \ |
| 254 | texinfo \ |
| 255 | wget \ |
Saqib Khan | 5158a32 | 2017-10-23 11:31:24 -0500 | [diff] [blame] | 256 | which \ |
Andrew Geissler | 40c1c9c | 2020-09-04 10:50:36 -0500 | [diff] [blame] | 257 | file \ |
| 258 | hostname \ |
| 259 | rpcgen \ |
| 260 | glibc-langpack-en \ |
| 261 | glibc-locale-source |
| 262 | |
| 263 | # Set the locale |
| 264 | ENV LANG=en_US.utf8 |
| 265 | RUN localedef -f UTF-8 -i en_US en_US.UTF-8 |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 266 | |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 267 | RUN grep -q ${GROUPS[0]} /etc/group || groupadd -g ${GROUPS[0]} ${USER} |
| 268 | RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS[0]} ${USER} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 269 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 270 | USER ${USER} |
| 271 | ENV HOME ${HOME} |
| 272 | RUN /bin/bash |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 273 | EOF |
| 274 | ) |
| 275 | |
Alanny Lopez | ccc650e | 2017-04-24 15:14:20 -0500 | [diff] [blame] | 276 | elif [[ "${distro}" == ubuntu ]]; then |
| 277 | |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 278 | if [[ -n "${http_proxy}" ]]; then |
| 279 | PROXY="RUN echo \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy" |
| 280 | fi |
| 281 | |
| 282 | Dockerfile=$(cat << EOF |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 283 | FROM ${DOCKER_BASE}${distro}:${img_tag} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 284 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 285 | ${PROXY} |
Lei YU | 39587ad | 2020-06-17 19:55:54 +0800 | [diff] [blame] | 286 | ${MIRROR} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 287 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 288 | ENV DEBIAN_FRONTEND noninteractive |
Saqib Khan | 7563512 | 2017-03-23 10:57:34 -0500 | [diff] [blame] | 289 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 290 | RUN apt-get update && apt-get install -yy \ |
| 291 | build-essential \ |
| 292 | chrpath \ |
| 293 | debianutils \ |
| 294 | diffstat \ |
| 295 | gawk \ |
| 296 | git \ |
| 297 | libdata-dumper-simple-perl \ |
| 298 | libsdl1.2-dev \ |
| 299 | libthread-queue-any-perl \ |
Alanny Lopez | 27af3a0 | 2017-05-26 10:49:06 -0500 | [diff] [blame] | 300 | locales \ |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 301 | python \ |
| 302 | python3 \ |
| 303 | socat \ |
| 304 | subversion \ |
| 305 | texinfo \ |
| 306 | cpio \ |
Saqib Khan | 5158a32 | 2017-10-23 11:31:24 -0500 | [diff] [blame] | 307 | wget \ |
| 308 | iputils-ping |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 309 | |
Alanny Lopez | 27af3a0 | 2017-05-26 10:49:06 -0500 | [diff] [blame] | 310 | # Set the locale |
| 311 | RUN locale-gen en_US.UTF-8 |
| 312 | ENV LANG en_US.UTF-8 |
| 313 | ENV LANGUAGE en_US:en |
| 314 | ENV LC_ALL en_US.UTF-8 |
| 315 | |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 316 | RUN grep -q ${GROUPS[0]} /etc/group || groupadd -g ${GROUPS[0]} ${USER} |
| 317 | RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS[0]} ${USER} |
Chris Smart | d30c590 | 2016-03-01 15:00:54 +1100 | [diff] [blame] | 318 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 319 | USER ${USER} |
| 320 | ENV HOME ${HOME} |
| 321 | RUN /bin/bash |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 322 | EOF |
| 323 | ) |
| 324 | fi |
| 325 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 326 | # Create the Docker run script |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 327 | export PROXY_HOST=${http_proxy/#http*:\/\/} |
| 328 | export PROXY_HOST=${PROXY_HOST/%:[0-9]*} |
| 329 | export PROXY_PORT=${http_proxy/#http*:\/\/*:} |
| 330 | |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 331 | mkdir -p "${WORKSPACE}" |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 332 | |
Andrew Geissler | 215e43c | 2019-04-23 10:57:48 -0500 | [diff] [blame] | 333 | # Determine command for bitbake image build |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 334 | if [ "$no_tar" = "false" ]; then |
Andrew Geissler | 2eb45d3 | 2019-09-18 21:56:44 -0500 | [diff] [blame] | 335 | bitbake_target="${bitbake_target} obmc-phosphor-debug-tarball" |
Andrew Geissler | 215e43c | 2019-04-23 10:57:48 -0500 | [diff] [blame] | 336 | fi |
| 337 | |
Chris Smart | 01d2b96 | 2015-11-11 18:05:30 +1100 | [diff] [blame] | 338 | cat > "${WORKSPACE}"/build.sh << EOF_SCRIPT |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 339 | #!/bin/bash |
| 340 | |
Joel Stanley | 38c9d14 | 2016-02-16 12:31:55 +1030 | [diff] [blame] | 341 | set -xeo pipefail |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 342 | |
Alanny Lopez | 723fea6 | 2017-09-12 11:22:17 -0500 | [diff] [blame] | 343 | # Go into the OpenBMC directory, the build will handle changing directories |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 344 | cd ${obmc_dir} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 345 | |
| 346 | # Set up proxies |
| 347 | export ftp_proxy=${http_proxy} |
| 348 | export http_proxy=${http_proxy} |
| 349 | export https_proxy=${http_proxy} |
| 350 | |
Chris Smart | 01d2b96 | 2015-11-11 18:05:30 +1100 | [diff] [blame] | 351 | mkdir -p ${WORKSPACE}/bin |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 352 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 353 | # Configure proxies for BitBake |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 354 | if [[ -n "${http_proxy}" ]]; then |
| 355 | |
Chris Smart | d30c590 | 2016-03-01 15:00:54 +1100 | [diff] [blame] | 356 | cat > ${WORKSPACE}/bin/git-proxy << \EOF_GIT |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 357 | #!/bin/bash |
| 358 | # \$1 = hostname, \$2 = port |
| 359 | PROXY=${PROXY_HOST} |
| 360 | PROXY_PORT=${PROXY_PORT} |
| 361 | exec socat STDIO PROXY:\${PROXY}:\${1}:\${2},proxyport=\${PROXY_PORT} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 362 | EOF_GIT |
| 363 | |
Chris Smart | 01d2b96 | 2015-11-11 18:05:30 +1100 | [diff] [blame] | 364 | chmod a+x ${WORKSPACE}/bin/git-proxy |
| 365 | export PATH=${WORKSPACE}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 366 | |
Lei YU | a76d7ce | 2020-05-11 15:20:56 +0800 | [diff] [blame] | 367 | lock=${HOME}/build-setup.lock |
| 368 | flock \${lock} git config --global core.gitProxy ${WORKSPACE}/bin/git-proxy |
| 369 | flock \${lock} git config --global http.proxy ${http_proxy} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 370 | |
Lei YU | a76d7ce | 2020-05-11 15:20:56 +0800 | [diff] [blame] | 371 | flock \${lock} mkdir -p ~/.subversion |
| 372 | flock \${lock} cat > ~/.subversion/servers << EOF_SVN |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 373 | [global] |
| 374 | http-proxy-host = ${PROXY_HOST} |
| 375 | http-proxy-port = ${PROXY_PORT} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 376 | EOF_SVN |
Lei YU | 58cb3ad | 2020-04-30 13:04:58 +0800 | [diff] [blame] | 377 | |
Lei YU | a76d7ce | 2020-05-11 15:20:56 +0800 | [diff] [blame] | 378 | flock \${lock} cat > ~/.wgetrc << EOF_WGETRC |
Lei YU | 58cb3ad | 2020-04-30 13:04:58 +0800 | [diff] [blame] | 379 | https_proxy = ${http_proxy} |
| 380 | http_proxy = ${http_proxy} |
| 381 | use_proxy = on |
| 382 | EOF_WGETRC |
| 383 | |
Lei YU | a76d7ce | 2020-05-11 15:20:56 +0800 | [diff] [blame] | 384 | flock \${lock} cat > ~/.curlrc << EOF_CURLRC |
Lei YU | 58cb3ad | 2020-04-30 13:04:58 +0800 | [diff] [blame] | 385 | proxy = ${PROXY_HOST}:${PROXY_PORT} |
| 386 | EOF_CURLRC |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 387 | fi |
| 388 | |
| 389 | # Source our build env |
| 390 | ${BITBAKE_CMD} |
| 391 | |
Andrew Geissler | 8565d2a | 2020-04-20 15:22:14 -0500 | [diff] [blame] | 392 | if [[ -z "${MACHINE}" ]]; then |
| 393 | echo "MACHINE is not configured for ${target}" |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 394 | exit 1 |
Michael Shepos | 2de03e9 | 2018-11-07 15:54:56 -0600 | [diff] [blame] | 395 | fi |
| 396 | |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 397 | export MACHINE="${MACHINE}" |
Andrew Geissler | 8565d2a | 2020-04-20 15:22:14 -0500 | [diff] [blame] | 398 | if [[ -z "${DISTRO}" ]]; then |
| 399 | echo "DISTRO is not configured for ${target} so will use default" |
| 400 | unset DISTRO |
| 401 | else |
| 402 | export DISTRO="${DISTRO}" |
| 403 | fi |
Brad Bishop | 91a200b | 2019-08-22 14:24:33 -0400 | [diff] [blame] | 404 | |
Alanny Lopez | eaa2eae | 2017-04-24 14:55:07 -0500 | [diff] [blame] | 405 | # Custom BitBake config settings |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 406 | cat >> conf/local.conf << EOF_CONF |
Chris Smart | c650c20 | 2015-11-25 15:58:53 +1100 | [diff] [blame] | 407 | BB_NUMBER_THREADS = "$(nproc)" |
| 408 | PARALLEL_MAKE = "-j$(nproc)" |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 409 | INHERIT += "rm_work" |
| 410 | BB_GENERATE_MIRROR_TARBALLS = "1" |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 411 | DL_DIR="${ssc_dir}/bitbake_downloads" |
| 412 | SSTATE_DIR="${ssc_dir}/bitbake_sharedstatecache" |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 413 | USER_CLASSES += "buildstats" |
Andrew Geissler | 931ec67 | 2016-08-11 13:10:05 -0500 | [diff] [blame] | 414 | INHERIT_remove = "uninative" |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 415 | TMPDIR="${build_dir}" |
Lei YU | 237bd08 | 2020-09-22 11:15:08 +0800 | [diff] [blame] | 416 | ${ENV_LOCAL_CONF} |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 417 | EOF_CONF |
| 418 | |
| 419 | # Kick off a build |
Michael Shepos | 33aeca4 | 2019-06-13 02:36:17 -0500 | [diff] [blame] | 420 | if [[ -n "${nice_priority}" ]]; then |
Andrew Geissler | 2eb45d3 | 2019-09-18 21:56:44 -0500 | [diff] [blame] | 421 | nice -${nice_priority} bitbake ${BITBAKE_OPTS} ${bitbake_target} |
Michael Shepos | 33aeca4 | 2019-06-13 02:36:17 -0500 | [diff] [blame] | 422 | else |
Andrew Geissler | 2eb45d3 | 2019-09-18 21:56:44 -0500 | [diff] [blame] | 423 | bitbake ${BITBAKE_OPTS} ${bitbake_target} |
Michael Shepos | 33aeca4 | 2019-06-13 02:36:17 -0500 | [diff] [blame] | 424 | fi |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 425 | |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 426 | # Copy internal build directory into xtrct_path directory |
Charles Paul Hofer | b249c2c | 2018-09-12 12:15:13 -0500 | [diff] [blame] | 427 | if [[ ${xtrct_small_copy_dir} ]]; then |
| 428 | mkdir -p ${xtrct_path}/${xtrct_small_copy_dir} |
| 429 | timeout ${xtrct_copy_timeout} cp -r ${build_dir}/${xtrct_small_copy_dir}/* ${xtrct_path}/${xtrct_small_copy_dir} |
| 430 | else |
| 431 | timeout ${xtrct_copy_timeout} cp -r ${build_dir}/* ${xtrct_path} |
| 432 | fi |
Charles Paul Hofer | be8700e | 2018-09-05 09:28:08 -0500 | [diff] [blame] | 433 | |
| 434 | if [[ 0 -ne $? ]]; then |
| 435 | echo "Received a non-zero exit code from timeout" |
| 436 | exit 1 |
| 437 | fi |
| 438 | |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 439 | EOF_SCRIPT |
| 440 | |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 441 | chmod a+x "${WORKSPACE}/build.sh" |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 442 | |
Alanny Lopez | 5118688 | 2017-08-01 16:14:41 -0500 | [diff] [blame] | 443 | # Give the Docker image a name based on the distro,tag,arch,and target |
Alanny Lopez | 1246b03 | 2018-02-24 23:34:55 -0600 | [diff] [blame] | 444 | img_name=${img_name:-openbmc/${distro}:${img_tag}-${target}-${ARCH}} |
Alanny Lopez | 5118688 | 2017-08-01 16:14:41 -0500 | [diff] [blame] | 445 | |
| 446 | # Build the Docker image |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 447 | docker build -t "${img_name}" - <<< "${Dockerfile}" |
Alanny Lopez | 5118688 | 2017-08-01 16:14:41 -0500 | [diff] [blame] | 448 | |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 449 | # If obmc_dir or ssc_dir are ${HOME} or a subdirectory they will not be mounted |
| 450 | mount_obmc_dir="-v ""${obmc_dir}"":""${obmc_dir}"" " |
| 451 | mount_ssc_dir="-v ""${ssc_dir}"":""${ssc_dir}"" " |
Lei YU | de2a320 | 2020-04-28 11:34:23 +0800 | [diff] [blame] | 452 | mount_workspace_dir="-v ""${WORKSPACE}"":""${WORKSPACE}"" " |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 453 | if [[ "${obmc_dir}" = "${HOME}/"* || "${obmc_dir}" = "${HOME}" ]];then |
| 454 | mount_obmc_dir="" |
Alanny Lopez | 3fbaa51 | 2017-04-24 15:46:52 -0500 | [diff] [blame] | 455 | fi |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 456 | if [[ "${ssc_dir}" = "${HOME}/"* || "${ssc_dir}" = "${HOME}" ]];then |
| 457 | mount_ssc_dir="" |
| 458 | fi |
Lei YU | de2a320 | 2020-04-28 11:34:23 +0800 | [diff] [blame] | 459 | if [[ "${WORKSPACE}" = "${HOME}/"* || "${WORKSPACE}" = "${HOME}" ]];then |
| 460 | mount_workspace_dir="" |
| 461 | fi |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 462 | |
| 463 | # Run the Docker container, execute the build.sh script |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 464 | # shellcheck disable=SC2086 # mount commands word-split purposefully |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 465 | docker run \ |
| 466 | --cap-add=sys_admin \ |
Michael Shepos | 33aeca4 | 2019-06-13 02:36:17 -0500 | [diff] [blame] | 467 | --cap-add=sys_nice \ |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 468 | --net=host \ |
| 469 | --rm=true \ |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 470 | -e WORKSPACE="${WORKSPACE}" \ |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 471 | -w "${HOME}" \ |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 472 | -v "${HOME}:${HOME}" \ |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 473 | ${mount_obmc_dir} \ |
| 474 | ${mount_ssc_dir} \ |
Lei YU | de2a320 | 2020-04-28 11:34:23 +0800 | [diff] [blame] | 475 | ${mount_workspace_dir} \ |
Michael Shepos | 3939e95 | 2019-01-16 16:00:35 -0600 | [diff] [blame] | 476 | --cpus="$num_cpu" \ |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 477 | -t "${img_name}" \ |
| 478 | "${WORKSPACE}/build.sh" |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 479 | |
Alanny Lopez | d32d332 | 2017-07-18 15:21:39 -0500 | [diff] [blame] | 480 | # To maintain function of resources that used an older path, add a link |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 481 | ln -sf "${xtrct_path}/deploy" "${WORKSPACE}/deploy" |
Alanny Lopez | d32d332 | 2017-07-18 15:21:39 -0500 | [diff] [blame] | 482 | |
Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame] | 483 | # Timestamp for build |
Alanny Lopez | 0e8ad99 | 2017-06-19 15:45:23 -0500 | [diff] [blame] | 484 | echo "Build completed, $(date)" |