blob: 2ebc224c935dfe78addd18553518f7787d2e70c6 [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 Geissler9f980d72019-01-03 14:19:43 -06005# This script will build a docker container which will then be used to build
6# and test the input UNIT_TEST_PKG. The docker container will be pre-populated
7# with the most used OpenBMC repositories (phosphor-dbus-interfaces, sdbusplus,
8# phosphor-logging, ...). This allows the use of docker caching
9# capabilities so the dependent repositories are only built once per update
10# to their corresponding repository. If a BRANCH parameter is input then the
11# docker container will be pre-populated with the latest code from that input
12# branch. If the branch does not exist in the repository, then master will be
13# used.
14#
15# UNIT_TEST_PKG: Required, repository which has been extracted and is to
16# be tested
17# WORKSPACE: Required, location of unit test scripts and repository
18# code to test
19# DISTRO: Optional, docker base image (ubuntu or fedora)
20# BRANCH: Optional, branch to build from each of the
21# openbmc repositories. default is master, which will be
22# used if input branch not provided or not found
23# DOCKER_IMG_NAME: Optional, default is openbmc/ubuntu-unit-test-master with a
24# -$BRANCH replacing -master if $BRANCH provided
25# dbus_sys_config_file: Optional, with the default being
26# `/usr/share/dbus-1/system.conf`
Matthew Barthc5dec752016-11-18 13:14:37 -060027
28# Trace bash processing. Set -e so when a step fails, we fail the build
29set -uo pipefail
30
31# Default variables
Andrew Geisslera61acb52019-01-03 16:32:44 -060032BRANCH=${BRANCH:-"master"}
33DOCKER_IMG_NAME=${DOCKER_IMG_NAME:-"openbmc/ubuntu-unit-test-${BRANCH}"}
Patrick Venture52164fd2018-08-28 16:12:47 -070034DISTRO=${DISTRO:-ubuntu:bionic}
Matthew Barthc5dec752016-11-18 13:14:37 -060035OBMC_BUILD_SCRIPTS="openbmc-build-scripts"
36UNIT_TEST_PY_DIR="scripts"
37UNIT_TEST_PY="unit-test.py"
Andrew Geisslera28286d2018-01-10 11:00:00 -080038FORMAT_CODE_SH="format-code.sh"
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060039DBUS_UNIT_TEST_PY="dbus-unit-test.py"
40DBUS_SYS_CONFIG_FILE=${dbus_sys_config_file:-"/usr/share/dbus-1/system.conf"}
Andrew Jefferya153ee32018-03-09 13:22:04 +103041MAKEFLAGS="${MAKEFLAGS:-""}"
William A. Kennington IIId70980f2018-11-08 15:14:27 -080042DOCKER_WORKDIR="${DOCKER_WORKDIR:-$WORKSPACE}"
Matthew Barthc5dec752016-11-18 13:14:37 -060043
44# Timestamp for job
45echo "Unit test build started, $(date)"
46
Andrew Jeffery316ebd32018-03-08 13:05:32 +103047if [[ "${DISTRO}" == "fedora" ]]; then
Matthew Barthc5dec752016-11-18 13:14:37 -060048 echo "Distro (${DISTRO}) not supported, running as ubuntu"
49 DISTRO="ubuntu:latest"
50fi
51
52# Check workspace, build scripts, and package to be unit tested exists
53if [ ! -d "${WORKSPACE}" ]; then
54 echo "Workspace(${WORKSPACE}) doesn't exist, exiting..."
55 exit 1
56fi
57if [ ! -d "${WORKSPACE}/${OBMC_BUILD_SCRIPTS}" ]; then
58 echo "Package(${OBMC_BUILD_SCRIPTS}) not found in ${WORKSPACE}, exiting..."
59 exit 1
60fi
61if [ ! -d "${WORKSPACE}/${UNIT_TEST_PKG}" ]; then
62 echo "Package(${UNIT_TEST_PKG}) not found in ${WORKSPACE}, exiting..."
63 exit 1
64fi
65
66# Copy unit test script into workspace
67cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${UNIT_TEST_PY} \
68${WORKSPACE}/${UNIT_TEST_PY}
69chmod a+x ${WORKSPACE}/${UNIT_TEST_PY}
70
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060071# Copy dbus unit test script into workspace
72cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${DBUS_UNIT_TEST_PY} \
73${WORKSPACE}/${DBUS_UNIT_TEST_PY}
74chmod a+x ${WORKSPACE}/${DBUS_UNIT_TEST_PY}
75
Andrew Geisslera28286d2018-01-10 11:00:00 -080076# Copy format code script into workspace
77cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${FORMAT_CODE_SH} \
78${WORKSPACE}/${FORMAT_CODE_SH}
79chmod a+x ${WORKSPACE}/${FORMAT_CODE_SH}
80
Matthew Barthc5dec752016-11-18 13:14:37 -060081# Configure docker build
82cd ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}
83echo "Building docker image with build-unit-test-docker.sh"
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060084# Export input env variables
85export DOCKER_IMG_NAME
86export DISTRO
87export BRANCH
88./build-unit-test-docker.sh
Matthew Barthc5dec752016-11-18 13:14:37 -060089
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060090# Unit test and parameters
Andrew Geisslera61acb52019-01-03 16:32:44 -060091UNIT_TEST="${DOCKER_WORKDIR}/${UNIT_TEST_PY},-w,${DOCKER_WORKDIR},\
92-p,${UNIT_TEST_PKG},-b,$BRANCH,-v"
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060093
Matthew Barthc5dec752016-11-18 13:14:37 -060094# Run the docker unit test container with the unit test execution script
95echo "Executing docker image"
96docker run --cap-add=sys_admin --rm=true \
James Feist878df5c2018-07-26 14:54:28 -070097 --network host \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060098 --privileged=true \
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -080099 -u "$USER" \
William A. Kennington IIId70980f2018-11-08 15:14:27 -0800100 -w "${DOCKER_WORKDIR}" -v "${WORKSPACE}":"${DOCKER_WORKDIR}" \
Andrew Jefferya153ee32018-03-09 13:22:04 +1030101 -e "MAKEFLAGS=${MAKEFLAGS}" \
Matthew Barth33df8792016-12-19 14:30:17 -0600102 -t ${DOCKER_IMG_NAME} \
William A. Kennington IIId70980f2018-11-08 15:14:27 -0800103 "${DOCKER_WORKDIR}"/${DBUS_UNIT_TEST_PY} -u ${UNIT_TEST} \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600104 -f ${DBUS_SYS_CONFIG_FILE}
Matthew Barthc5dec752016-11-18 13:14:37 -0600105
106# Timestamp for build
107echo "Unit test build completed, $(date)"