blob: 3d354e8a301ae89276a00047595934b103b8ae6a [file] [log] [blame]
Matthew Barthc5dec752016-11-18 13:14:37 -06001#!/bin/bash -xe
2
3# This build script is for running the Jenkins unit test builds using docker.
4#
Andrew Jeffery4b4a6bc2018-03-08 12:58:48 +10305# DISTRO = Docker base image. Ubuntu and Fedora are supported.
Matthew Barthc5dec752016-11-18 13:14:37 -06006# WORKSPACE = <location of unit test execution script>
Andrew Jeffery4b4a6bc2018-03-08 12:58:48 +10307# dbus_sys_config_file = <path of the dbus config file>
Matthew Barthc5dec752016-11-18 13:14:37 -06008
9# Trace bash processing. Set -e so when a step fails, we fail the build
10set -uo pipefail
11
12# Default variables
13DOCKER_IMG_NAME="openbmc/ubuntu-unit-test"
Andrew Jeffery4b4a6bc2018-03-08 12:58:48 +103014DISTRO=${DISTRO:-ubuntu:latest}
Matthew Barthc5dec752016-11-18 13:14:37 -060015WORKSPACE=${WORKSPACE:-${TMP}/unit-test${RANDOM}}
16OBMC_BUILD_SCRIPTS="openbmc-build-scripts"
17UNIT_TEST_PY_DIR="scripts"
18UNIT_TEST_PY="unit-test.py"
Andrew Geisslera28286d2018-01-10 11:00:00 -080019FORMAT_CODE_SH="format-code.sh"
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060020DBUS_UNIT_TEST_PY="dbus-unit-test.py"
21DBUS_SYS_CONFIG_FILE=${dbus_sys_config_file:-"/usr/share/dbus-1/system.conf"}
Matthew Barthc5dec752016-11-18 13:14:37 -060022
23# Timestamp for job
24echo "Unit test build started, $(date)"
25
26# Currently only support ubuntu:latest due to systemd requirements
27if [[ "${DISTRO}" == "ubuntu"* ]]; then
28 DISTRO="ubuntu:latest"
29elif [[ "${DISTRO}" == "fedora" ]]; then
30 echo "Distro (${DISTRO}) not supported, running as ubuntu"
31 DISTRO="ubuntu:latest"
32fi
33
34# Check workspace, build scripts, and package to be unit tested exists
35if [ ! -d "${WORKSPACE}" ]; then
36 echo "Workspace(${WORKSPACE}) doesn't exist, exiting..."
37 exit 1
38fi
39if [ ! -d "${WORKSPACE}/${OBMC_BUILD_SCRIPTS}" ]; then
40 echo "Package(${OBMC_BUILD_SCRIPTS}) not found in ${WORKSPACE}, exiting..."
41 exit 1
42fi
43if [ ! -d "${WORKSPACE}/${UNIT_TEST_PKG}" ]; then
44 echo "Package(${UNIT_TEST_PKG}) not found in ${WORKSPACE}, exiting..."
45 exit 1
46fi
47
48# Copy unit test script into workspace
49cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${UNIT_TEST_PY} \
50${WORKSPACE}/${UNIT_TEST_PY}
51chmod a+x ${WORKSPACE}/${UNIT_TEST_PY}
52
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060053# Copy dbus unit test script into workspace
54cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${DBUS_UNIT_TEST_PY} \
55${WORKSPACE}/${DBUS_UNIT_TEST_PY}
56chmod a+x ${WORKSPACE}/${DBUS_UNIT_TEST_PY}
57
Andrew Geisslera28286d2018-01-10 11:00:00 -080058# Copy format code script into workspace
59cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${FORMAT_CODE_SH} \
60${WORKSPACE}/${FORMAT_CODE_SH}
61chmod a+x ${WORKSPACE}/${FORMAT_CODE_SH}
62
Matthew Barthc5dec752016-11-18 13:14:37 -060063# Configure docker build
64cd ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}
65echo "Building docker image with build-unit-test-docker.sh"
66./build-unit-test-docker.sh ${DOCKER_IMG_NAME} ${DISTRO}
67
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060068# Unit test and parameters
69UNIT_TEST="${WORKSPACE}/${UNIT_TEST_PY},-w,${WORKSPACE},-p,${UNIT_TEST_PKG},-v"
70
Matthew Barthc5dec752016-11-18 13:14:37 -060071# Run the docker unit test container with the unit test execution script
72echo "Executing docker image"
73docker run --cap-add=sys_admin --rm=true \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060074 --privileged=true \
Matthew Barthc5dec752016-11-18 13:14:37 -060075 -w "${WORKSPACE}" -v "${WORKSPACE}":"${WORKSPACE}" \
Matthew Barth33df8792016-12-19 14:30:17 -060076 -t ${DOCKER_IMG_NAME} \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060077 ${WORKSPACE}/${DBUS_UNIT_TEST_PY} -u ${UNIT_TEST} \
78 -f ${DBUS_SYS_CONFIG_FILE}
Matthew Barthc5dec752016-11-18 13:14:37 -060079
80# Timestamp for build
81echo "Unit test build completed, $(date)"