blob: 5ef7e63e660f7f34425ef8d6bf4d0a6aeb8b1893 [file] [log] [blame]
Chris Smartb23265d2016-01-11 16:48:57 +11001#!/bin/bash
2
3# This build script is for running the Jenkins builds using docker.
4#
5
6# Trace bash processing
7#set -x
8
9# Default variables
10WORKSPACE=${WORKSPACE:-${HOME}/${RANDOM}${RANDOM}}
11http_proxy=${http_proxy:-}
12
13# Timestamp for job
14echo "Build started, $(date)"
15
16# Configure docker build
17if [[ -n "${http_proxy}" ]]; then
18PROXY="RUN echo \"Acquire::http::Proxy \\"\"${http_proxy}/\\"\";\" > /etc/apt/apt.conf.d/000apt-cacher-ng-proxy"
19fi
20
21Dockerfile=$(cat << EOF
22FROM ubuntu:15.10
23
24${PROXY}
25
Chris Smart4593d4f2016-03-09 15:50:59 +110026ENV DEBIAN_FRONTEND noninteractive
27RUN apt-get update && apt-get upgrade -yy && apt-get install -yy \
28 bc \
29 build-essential \
30 cpio \
31 git \
32 python \
33 unzip \
34 wget
35
36RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
37RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
38
Chris Smartb23265d2016-01-11 16:48:57 +110039RUN locale-gen en_AU.utf8
40
41USER ${USER}
42ENV HOME ${HOME}
43RUN /bin/bash
44EOF
45)
46
47# Build the docker container
48docker build -t initramfs-build/ubuntu - <<< "${Dockerfile}"
49if [[ "$?" -ne 0 ]]; then
50 echo "Failed to build docker container."
51 exit 1
52fi
53
54# Create the docker run script
55export PROXY_HOST=${http_proxy/#http*:\/\/}
56export PROXY_HOST=${PROXY_HOST/%:[0-9]*}
57export PROXY_PORT=${http_proxy/#http*:\/\/*:}
58
59mkdir -p ${WORKSPACE}
60
61cat > "${WORKSPACE}"/build.sh << EOF_SCRIPT
62#!/bin/bash
63
64set -x
65
66cd ${WORKSPACE}
67
68# Go into the linux directory (the script will put us in a build subdir)
69cd buildroot
70
71cat > configs/powerpc64_openpower_defconfig << EOF_BUILDROOT
72BR2_powerpc64le=y
73BR2_TARGET_ROOTFS_CPIO=y
74BR2_TARGET_ROOTFS_CPIO_XZ=y
Chris Smart01d1b382016-01-14 12:05:33 +110075BR2_TARGET_GENERIC_GETTY_PORT="hvc0"
Chris Smartb23265d2016-01-11 16:48:57 +110076EOF_BUILDROOT
77
78# Build buildroot
79export BR2_DL_DIR=${HOME}/buildroot_downloads
80make powerpc64_openpower_defconfig || exit 1
81make || exit 1
82
83EOF_SCRIPT
84
85chmod a+x ${WORKSPACE}/build.sh
86
87# Run the docker container, execute the build script we just built
88docker run --cap-add=sys_admin --net=host --rm=true -e WORKSPACE=${WORKSPACE} --user="${USER}" \
89 -w "${HOME}" -v "${HOME}":"${HOME}" -t initramfs-build/ubuntu ${WORKSPACE}/build.sh
90
91# Timestamp for build
92echo "Build completed, $(date)"
93