blob: 2048d1b3d95fe6c38b72c8b81e139d05961d81a9 [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#
5# It uses a few variables which are part of Jenkins build job matrix:
6# distro = fedora|ubuntu|ubuntu:14.04|ubuntu:16.04
Leonel Gonzalez13ca3802017-03-07 14:08:44 -06007# dbus_sys_config_file = <path of the dbus config file>
Matthew Barthc5dec752016-11-18 13:14:37 -06008# WORKSPACE = <location of unit test execution script>
9
10# Trace bash processing. Set -e so when a step fails, we fail the build
11set -uo pipefail
12
13# Default variables
14DOCKER_IMG_NAME="openbmc/ubuntu-unit-test"
15DISTRO=${distro:-ubuntu:latest}
16WORKSPACE=${WORKSPACE:-${TMP}/unit-test${RANDOM}}
17OBMC_BUILD_SCRIPTS="openbmc-build-scripts"
18UNIT_TEST_PY_DIR="scripts"
19UNIT_TEST_PY="unit-test.py"
Andrew Geisslera28286d2018-01-10 11:00:00 -080020FORMAT_CODE_SH="format-code.sh"
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060021DBUS_UNIT_TEST_PY="dbus-unit-test.py"
22DBUS_SYS_CONFIG_FILE=${dbus_sys_config_file:-"/usr/share/dbus-1/system.conf"}
Matthew Barthc5dec752016-11-18 13:14:37 -060023
24# Timestamp for job
25echo "Unit test build started, $(date)"
26
27# Currently only support ubuntu:latest due to systemd requirements
28if [[ "${DISTRO}" == "ubuntu"* ]]; then
29 DISTRO="ubuntu:latest"
30elif [[ "${DISTRO}" == "fedora" ]]; then
31 echo "Distro (${DISTRO}) not supported, running as ubuntu"
32 DISTRO="ubuntu:latest"
33fi
34
35# Check workspace, build scripts, and package to be unit tested exists
36if [ ! -d "${WORKSPACE}" ]; then
37 echo "Workspace(${WORKSPACE}) doesn't exist, exiting..."
38 exit 1
39fi
40if [ ! -d "${WORKSPACE}/${OBMC_BUILD_SCRIPTS}" ]; then
41 echo "Package(${OBMC_BUILD_SCRIPTS}) not found in ${WORKSPACE}, exiting..."
42 exit 1
43fi
44if [ ! -d "${WORKSPACE}/${UNIT_TEST_PKG}" ]; then
45 echo "Package(${UNIT_TEST_PKG}) not found in ${WORKSPACE}, exiting..."
46 exit 1
47fi
48
49# Copy unit test script into workspace
50cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${UNIT_TEST_PY} \
51${WORKSPACE}/${UNIT_TEST_PY}
52chmod a+x ${WORKSPACE}/${UNIT_TEST_PY}
53
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060054# Copy dbus unit test script into workspace
55cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${DBUS_UNIT_TEST_PY} \
56${WORKSPACE}/${DBUS_UNIT_TEST_PY}
57chmod a+x ${WORKSPACE}/${DBUS_UNIT_TEST_PY}
58
Andrew Geisslera28286d2018-01-10 11:00:00 -080059# Copy format code script into workspace
60cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${FORMAT_CODE_SH} \
61${WORKSPACE}/${FORMAT_CODE_SH}
62chmod a+x ${WORKSPACE}/${FORMAT_CODE_SH}
63
Matthew Barthc5dec752016-11-18 13:14:37 -060064# Configure docker build
65cd ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}
66echo "Building docker image with build-unit-test-docker.sh"
67./build-unit-test-docker.sh ${DOCKER_IMG_NAME} ${DISTRO}
68
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060069# Unit test and parameters
70UNIT_TEST="${WORKSPACE}/${UNIT_TEST_PY},-w,${WORKSPACE},-p,${UNIT_TEST_PKG},-v"
71
Matthew Barthc5dec752016-11-18 13:14:37 -060072# Run the docker unit test container with the unit test execution script
73echo "Executing docker image"
74docker run --cap-add=sys_admin --rm=true \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060075 --privileged=true \
Matthew Barthc5dec752016-11-18 13:14:37 -060076 -w "${WORKSPACE}" -v "${WORKSPACE}":"${WORKSPACE}" \
Matthew Barth33df8792016-12-19 14:30:17 -060077 -t ${DOCKER_IMG_NAME} \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060078 ${WORKSPACE}/${DBUS_UNIT_TEST_PY} -u ${UNIT_TEST} \
79 -f ${DBUS_SYS_CONFIG_FILE}
Matthew Barthc5dec752016-11-18 13:14:37 -060080
81# Timestamp for build
82echo "Unit test build completed, $(date)"