Chris Smart | 0265171 | 2015-11-11 11:09:00 +1100 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | |
| 3 | # This build script is for running the Jenkins builds using docker. |
| 4 | # |
| 5 | # It expects a few variables which are part of Jenkins build job matrix: |
| 6 | # target = barreleye|palmetto|qemu |
| 7 | # distro = fedora|ubuntu |
| 8 | # WORKSPACE = |
| 9 | |
| 10 | # Trace bash processing |
| 11 | set -x |
| 12 | |
| 13 | # Default variables |
| 14 | target=${target:-qemu} |
| 15 | distro=${distro:-ubuntu} |
| 16 | WORKSPACE=${WORKSPACE:-${HOME}/${RANDOM}${RANDOM}} |
| 17 | http_proxy=${http_proxy:-} |
| 18 | |
| 19 | # Timestamp for job |
| 20 | echo "Build started, $(date)" |
| 21 | |
| 22 | # Work out what build target we should be running and set bitbake command |
| 23 | case ${target} in |
| 24 | barreleye) |
| 25 | BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-openpower/meta-rackspace/meta-barreleye/conf source oe-init-build-env" |
| 26 | ;; |
| 27 | palmetto) |
| 28 | BITBAKE_CMD="TEMPLATECONF=meta-openbmc-machines/meta-openpower/meta-ibm/meta-palmetto/conf source oe-init-build-env" |
| 29 | ;; |
| 30 | qemu) |
| 31 | BITBAKE_CMD="source openbmc-env" |
| 32 | ;; |
| 33 | *) |
| 34 | exit 1 |
| 35 | ;; |
| 36 | esac |
| 37 | |
| 38 | # Configure docker build |
| 39 | if [[ "${distro}" == fedora ]];then |
| 40 | |
| 41 | if [[ -n "${http_proxy}" ]]; then |
| 42 | PROXY="RUN echo \"proxy=${http_proxy}\" >> /etc/dnf/dnf.conf" |
| 43 | fi |
| 44 | |
| 45 | Dockerfile=$(cat << EOF |
| 46 | FROM fedora:latest |
| 47 | |
| 48 | ${PROXY} |
| 49 | |
| 50 | RUN dnf --refresh upgrade -y |
| 51 | RUN dnf install -y git subversion gcc gcc-c++ make perl-Thread-Queue perl-Data-Dumper diffstat texinfo \ |
| 52 | chrpath wget SDL-devel patch bzip2 tar cpio findutils socat which python-devel perl-bignum |
| 53 | |
| 54 | RUN groupadd -g ${GROUPS} ${USER} && useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER} |
| 55 | |
| 56 | USER ${USER} |
| 57 | ENV HOME ${HOME} |
| 58 | RUN /bin/bash |
| 59 | EOF |
| 60 | ) |
| 61 | |
| 62 | elif [[ "${distro}" == ubuntu ]]; then |
| 63 | if [[ -n "${http_proxy}" ]]; then |
| 64 | PROXY="RUN echo \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy" |
| 65 | fi |
| 66 | |
| 67 | Dockerfile=$(cat << EOF |
| 68 | FROM ubuntu:latest |
| 69 | |
| 70 | ${PROXY} |
| 71 | |
| 72 | RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get upgrade -y |
| 73 | RUN DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential git subversion diffstat texinfo \ |
| 74 | chrpath wget libthread-queue-any-perl libdata-dumper-simple-perl python libsdl1.2-dev gawk socat debianutils |
| 75 | |
| 76 | RUN groupadd -g ${GROUPS} ${USER} && useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER} |
| 77 | |
| 78 | USER ${USER} |
| 79 | ENV HOME ${HOME} |
| 80 | RUN /bin/bash |
| 81 | EOF |
| 82 | ) |
| 83 | fi |
| 84 | |
| 85 | # Build the docker container |
| 86 | docker build -t openbmc/${distro} - <<< "${Dockerfile}" |
| 87 | if [[ "$?" -ne 0 ]]; then |
| 88 | echo "Failed to build docker container." |
| 89 | exit 1 |
| 90 | fi |
| 91 | |
| 92 | # Create the docker run script |
| 93 | export PROXY_HOST=${http_proxy/#http*:\/\/} |
| 94 | export PROXY_HOST=${PROXY_HOST/%:[0-9]*} |
| 95 | export PROXY_PORT=${http_proxy/#http*:\/\/*:} |
| 96 | |
| 97 | mkdir -p ${WORKSPACE/scratch/var\/lib} |
| 98 | |
| 99 | cat > "${WORKSPACE/scratch/var\/lib}"/build.sh << EOF_SCRIPT |
| 100 | #!/bin/bash |
| 101 | |
| 102 | set -x |
| 103 | |
| 104 | cd ${WORKSPACE/scratch/var\/lib} |
| 105 | |
| 106 | # Go into the openbmc directory (the openbmc script will put us in a build subdir) |
| 107 | cd openbmc |
| 108 | |
| 109 | # Set up proxies |
| 110 | export ftp_proxy=${http_proxy} |
| 111 | export http_proxy=${http_proxy} |
| 112 | export https_proxy=${http_proxy} |
| 113 | |
| 114 | mkdir -p ${WORKSPACE/scratch/var\/lib}/bin |
| 115 | |
| 116 | # Configure proxies for bitbake |
| 117 | if [[ -n "${http_proxy}" ]]; then |
| 118 | |
| 119 | cat > ${WORKSPACE/scratch/var\/lib}/bin/git-proxy << EOF_GIT |
| 120 | #!/bin/bash |
| 121 | # \$1 = hostname, \$2 = port |
| 122 | PROXY=${PROXY_HOST} |
| 123 | PROXY_PORT=${PROXY_PORT} |
| 124 | exec socat STDIO PROXY:\${PROXY}:\${1}:\${2},proxyport=\${PROXY_PORT} |
| 125 | EOF_GIT |
| 126 | |
| 127 | chmod a+x ${WORKSPACE/scratch/var\/lib}/bin/git-proxy |
| 128 | export PATH=${WORKSPACE/scratch/var\/lib}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH} |
| 129 | git config core.gitProxy git-proxy |
| 130 | |
| 131 | mkdir -p ~/.subversion |
| 132 | |
| 133 | cat > ~/.subversion/servers << EOF_SVN |
| 134 | [global] |
| 135 | http-proxy-host = ${PROXY_HOST} |
| 136 | http-proxy-port = ${PROXY_PORT} |
| 137 | EOF_SVN |
| 138 | fi |
| 139 | |
| 140 | # Source our build env |
| 141 | ${BITBAKE_CMD} |
| 142 | |
| 143 | # Custom bitbake config settings |
| 144 | cat >> conf/local.conf << EOF_CONF |
| 145 | BB_NUMBER_THREADS = "$(($(nproc) / 4))" |
| 146 | PARALLEL_MAKE = "-j$(($(nproc) / 4))" |
| 147 | INHERIT += "rm_work" |
| 148 | BB_GENERATE_MIRROR_TARBALLS = "1" |
| 149 | DL_DIR="${HOME}/bitbake_downloads" |
| 150 | SSTATE_DIR="${HOME}/bitbake_sharedstatecache" |
| 151 | USER_CLASSES += "buildstats" |
| 152 | EOF_CONF |
| 153 | |
| 154 | # Kick off a build |
| 155 | bitbake obmc-phosphor-image |
| 156 | |
| 157 | EOF_SCRIPT |
| 158 | |
| 159 | chmod a+x ${WORKSPACE}/build.sh |
| 160 | |
| 161 | # Run the docker container, execute the build script we just built |
| 162 | docker run --cap-add=sys_admin --net=host --rm=true -e WORKSPACE=${WORKSPACE/scratch/var\/lib} --user="${USER}" \ |
| 163 | -w "${HOME}" -v "${HOME}":"${HOME}" -t openbmc/${distro} ${WORKSPACE/scratch/var\/lib}/build.sh |
| 164 | |
| 165 | # Create link to images for archiving |
| 166 | ln -sf ${WORKSPACE}/openbmc/build/tmp/deploy/images ${WORKSPACE}/images |
| 167 | |
| 168 | # Timestamp for build |
| 169 | echo "Build completed, $(date)" |
| 170 | |