blob: 280c9ffb17472656604b692f7731b23c8c33e8c8 [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
Andrew Geissler9f980d72019-01-03 14:19:43 -060019# BRANCH: Optional, branch to build from each of the
20# openbmc repositories. default is master, which will be
21# used if input branch not provided or not found
Andrew Geissler9f980d72019-01-03 14:19:43 -060022# dbus_sys_config_file: Optional, with the default being
23# `/usr/share/dbus-1/system.conf`
Lei YU7ef93302019-11-06 13:53:21 +080024# NO_FORMAT_CODE: Optional, do not run format-code.sh
Brad Bishop5d6688c2020-08-26 15:44:02 -040025# EXTRA_UNIT_TEST_ARGS: Optional, pass arguments to unit-test.py
Matthew Barthc5dec752016-11-18 13:14:37 -060026
27# Trace bash processing. Set -e so when a step fails, we fail the build
28set -uo pipefail
29
30# Default variables
Andrew Geisslera61acb52019-01-03 16:32:44 -060031BRANCH=${BRANCH:-"master"}
Matthew Barthc5dec752016-11-18 13:14:37 -060032OBMC_BUILD_SCRIPTS="openbmc-build-scripts"
33UNIT_TEST_PY_DIR="scripts"
Manojkiran Edae6f120a2021-03-20 11:13:43 +053034DICTIONARY_DIR="dictionary"
Manojkiran Eda87111bb2021-08-14 11:26:16 +053035CONFIG_DIR="config"
Matthew Barthc5dec752016-11-18 13:14:37 -060036UNIT_TEST_PY="unit-test.py"
Andrew Geisslera28286d2018-01-10 11:00:00 -080037FORMAT_CODE_SH="format-code.sh"
Manojkiran Edae6f120a2021-03-20 11:13:43 +053038SPELLINGS_TXT="openbmc-spelling.txt"
Manojkiran Eda87111bb2021-08-14 11:26:16 +053039ESLINT_CONFIG="eslint-global-config.json"
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060040DBUS_UNIT_TEST_PY="dbus-unit-test.py"
William A. Kennington III65b37fa2019-01-31 15:15:17 -080041TEST_ONLY="${TEST_ONLY:-}"
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060042DBUS_SYS_CONFIG_FILE=${dbus_sys_config_file:-"/usr/share/dbus-1/system.conf"}
Andrew Jefferya153ee32018-03-09 13:22:04 +103043MAKEFLAGS="${MAKEFLAGS:-""}"
William A. Kennington IIId70980f2018-11-08 15:14:27 -080044DOCKER_WORKDIR="${DOCKER_WORKDIR:-$WORKSPACE}"
Lei YU7ef93302019-11-06 13:53:21 +080045NO_FORMAT_CODE="${NO_FORMAT_CODE:-}"
Matthew Barthc5dec752016-11-18 13:14:37 -060046
47# Timestamp for job
48echo "Unit test build started, $(date)"
49
Matthew Barthc5dec752016-11-18 13:14:37 -060050# Check workspace, build scripts, and package to be unit tested exists
51if [ ! -d "${WORKSPACE}" ]; then
52 echo "Workspace(${WORKSPACE}) doesn't exist, exiting..."
53 exit 1
54fi
55if [ ! -d "${WORKSPACE}/${OBMC_BUILD_SCRIPTS}" ]; then
56 echo "Package(${OBMC_BUILD_SCRIPTS}) not found in ${WORKSPACE}, exiting..."
57 exit 1
58fi
Patrick Williams384d7412020-11-06 16:15:41 -060059# shellcheck disable=SC2153 # UNIT_TEST_PKG is not misspelled.
Matthew Barthc5dec752016-11-18 13:14:37 -060060if [ ! -d "${WORKSPACE}/${UNIT_TEST_PKG}" ]; then
61 echo "Package(${UNIT_TEST_PKG}) not found in ${WORKSPACE}, exiting..."
62 exit 1
63fi
64
65# Copy unit test script into workspace
Patrick Williams384d7412020-11-06 16:15:41 -060066cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${UNIT_TEST_PY} \
67"${WORKSPACE}"/${UNIT_TEST_PY}
68chmod a+x "${WORKSPACE}"/${UNIT_TEST_PY}
Matthew Barthc5dec752016-11-18 13:14:37 -060069
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060070# Copy dbus unit test script into workspace
Patrick Williams384d7412020-11-06 16:15:41 -060071cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${DBUS_UNIT_TEST_PY} \
72"${WORKSPACE}"/${DBUS_UNIT_TEST_PY}
73chmod a+x "${WORKSPACE}"/${DBUS_UNIT_TEST_PY}
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060074
Andrew Geisslera28286d2018-01-10 11:00:00 -080075# Copy format code script into workspace
Patrick Williams384d7412020-11-06 16:15:41 -060076cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${FORMAT_CODE_SH} \
77"${WORKSPACE}"/${FORMAT_CODE_SH}
78chmod a+x "${WORKSPACE}"/${FORMAT_CODE_SH}
Andrew Geisslera28286d2018-01-10 11:00:00 -080079
Manojkiran Edae6f120a2021-03-20 11:13:43 +053080# Copy spellings.txt file into workspace
81cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${DICTIONARY_DIR}/${SPELLINGS_TXT} \
82"${WORKSPACE}"/${SPELLINGS_TXT}
83
Manojkiran Eda87111bb2021-08-14 11:26:16 +053084# Copy the eslintconfig file into workspce
85cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${CONFIG_DIR}/${ESLINT_CONFIG} \
86"${WORKSPACE}"/${ESLINT_CONFIG}
87
Matthew Barthc5dec752016-11-18 13:14:37 -060088# Configure docker build
Patrick Williams384d7412020-11-06 16:15:41 -060089cd "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}
Patrick Williams02871c92021-02-01 20:57:19 -060090echo "Building docker image with build-unit-test-docker"
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060091# Export input env variables
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060092export BRANCH
Patrick Williams9b423102021-03-16 00:07:31 -050093DOCKER_IMG_NAME=$(./scripts/build-unit-test-docker)
94export DOCKER_IMG_NAME
Matthew Barthc5dec752016-11-18 13:14:37 -060095
Brad Bishop5d6688c2020-08-26 15:44:02 -040096# Allow the user to pass options through to unit-test.py:
97# EXTRA_UNIT_TEST_ARGS="-r 100" ...
98EXTRA_UNIT_TEST_ARGS="${EXTRA_UNIT_TEST_ARGS:+,${EXTRA_UNIT_TEST_ARGS/ /,}}"
99
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600100# Unit test and parameters
Andrew Geisslera61acb52019-01-03 16:32:44 -0600101UNIT_TEST="${DOCKER_WORKDIR}/${UNIT_TEST_PY},-w,${DOCKER_WORKDIR},\
Brad Bishop5d6688c2020-08-26 15:44:02 -0400102-p,${UNIT_TEST_PKG},-b,$BRANCH,-v${TEST_ONLY:+,-t}${NO_FORMAT_CODE:+,-n}\
103${EXTRA_UNIT_TEST_ARGS}"
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600104
Matthew Barthc5dec752016-11-18 13:14:37 -0600105# Run the docker unit test container with the unit test execution script
106echo "Executing docker image"
107docker run --cap-add=sys_admin --rm=true \
James Feist878df5c2018-07-26 14:54:28 -0700108 --network host \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600109 --privileged=true \
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800110 -u "$USER" \
William A. Kennington IIId70980f2018-11-08 15:14:27 -0800111 -w "${DOCKER_WORKDIR}" -v "${WORKSPACE}":"${DOCKER_WORKDIR}" \
Andrew Jefferya153ee32018-03-09 13:22:04 +1030112 -e "MAKEFLAGS=${MAKEFLAGS}" \
Patrick Williams384d7412020-11-06 16:15:41 -0600113 -t "${DOCKER_IMG_NAME}" \
114 "${DOCKER_WORKDIR}"/${DBUS_UNIT_TEST_PY} -u "${UNIT_TEST}" \
115 -f "${DBUS_SYS_CONFIG_FILE}"
Matthew Barthc5dec752016-11-18 13:14:37 -0600116
117# Timestamp for build
118echo "Unit test build completed, $(date)"
Zane Shelley5ab3e862019-07-24 13:14:57 -0500119
120# Clean up copied scripts.
Patrick Williams384d7412020-11-06 16:15:41 -0600121rm "${WORKSPACE}"/${UNIT_TEST_PY}
122rm "${WORKSPACE}"/${DBUS_UNIT_TEST_PY}
123rm "${WORKSPACE}"/${FORMAT_CODE_SH}
Manojkiran Eda87111bb2021-08-14 11:26:16 +0530124rm "${WORKSPACE}"/${ESLINT_CONFIG}
Zane Shelley5ab3e862019-07-24 13:14:57 -0500125