blob: e00f981a6474bb7528c954d7bad5e68478b22f0a [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`
Nan Zhou971a6972022-06-14 18:27:53 +000024# TEST_ONLY: Optional, do not run analysis tools
Lei YU7ef93302019-11-06 13:53:21 +080025# NO_FORMAT_CODE: Optional, do not run format-code.sh
Brad Bishop5d6688c2020-08-26 15:44:02 -040026# EXTRA_UNIT_TEST_ARGS: Optional, pass arguments to unit-test.py
Benjamin Fairae58fe72022-05-17 15:22:24 -070027# INTERACTIVE: Optional, run a bash shell instead of unit-test.py
Matthew Barthc5dec752016-11-18 13:14:37 -060028
29# Trace bash processing. Set -e so when a step fails, we fail the build
30set -uo pipefail
31
32# Default variables
Andrew Geisslera61acb52019-01-03 16:32:44 -060033BRANCH=${BRANCH:-"master"}
Matthew Barthc5dec752016-11-18 13:14:37 -060034OBMC_BUILD_SCRIPTS="openbmc-build-scripts"
35UNIT_TEST_PY_DIR="scripts"
Manojkiran Eda87111bb2021-08-14 11:26:16 +053036CONFIG_DIR="config"
Matthew Barthc5dec752016-11-18 13:14:37 -060037UNIT_TEST_PY="unit-test.py"
Andrew Geisslera28286d2018-01-10 11:00:00 -080038FORMAT_CODE_SH="format-code.sh"
Manojkiran Edae6f120a2021-03-20 11:13:43 +053039SPELLINGS_TXT="openbmc-spelling.txt"
Manojkiran Eda87111bb2021-08-14 11:26:16 +053040ESLINT_CONFIG="eslint-global-config.json"
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060041DBUS_UNIT_TEST_PY="dbus-unit-test.py"
William A. Kennington III65b37fa2019-01-31 15:15:17 -080042TEST_ONLY="${TEST_ONLY:-}"
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060043DBUS_SYS_CONFIG_FILE=${dbus_sys_config_file:-"/usr/share/dbus-1/system.conf"}
Andrew Jefferya153ee32018-03-09 13:22:04 +103044MAKEFLAGS="${MAKEFLAGS:-""}"
William A. Kennington IIId70980f2018-11-08 15:14:27 -080045DOCKER_WORKDIR="${DOCKER_WORKDIR:-$WORKSPACE}"
Lei YU7ef93302019-11-06 13:53:21 +080046NO_FORMAT_CODE="${NO_FORMAT_CODE:-}"
Benjamin Fairae58fe72022-05-17 15:22:24 -070047INTERACTIVE="${INTERACTIVE:-}"
Matthew Barthc5dec752016-11-18 13:14:37 -060048
49# Timestamp for job
50echo "Unit test build started, $(date)"
51
Matthew Barthc5dec752016-11-18 13:14:37 -060052# 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
Patrick Williams384d7412020-11-06 16:15:41 -060061# shellcheck disable=SC2153 # UNIT_TEST_PKG is not misspelled.
Matthew Barthc5dec752016-11-18 13:14:37 -060062if [ ! -d "${WORKSPACE}/${UNIT_TEST_PKG}" ]; then
63 echo "Package(${UNIT_TEST_PKG}) not found in ${WORKSPACE}, exiting..."
64 exit 1
65fi
66
67# Copy unit test script into workspace
Patrick Williams384d7412020-11-06 16:15:41 -060068cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${UNIT_TEST_PY} \
69"${WORKSPACE}"/${UNIT_TEST_PY}
70chmod a+x "${WORKSPACE}"/${UNIT_TEST_PY}
Matthew Barthc5dec752016-11-18 13:14:37 -060071
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060072# Copy dbus unit test script into workspace
Patrick Williams384d7412020-11-06 16:15:41 -060073cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${DBUS_UNIT_TEST_PY} \
74"${WORKSPACE}"/${DBUS_UNIT_TEST_PY}
75chmod a+x "${WORKSPACE}"/${DBUS_UNIT_TEST_PY}
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060076
Andrew Geisslera28286d2018-01-10 11:00:00 -080077# Copy format code script into workspace
Patrick Williams384d7412020-11-06 16:15:41 -060078cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${FORMAT_CODE_SH} \
79"${WORKSPACE}"/${FORMAT_CODE_SH}
80chmod a+x "${WORKSPACE}"/${FORMAT_CODE_SH}
Andrew Geisslera28286d2018-01-10 11:00:00 -080081
Manojkiran Edae6f120a2021-03-20 11:13:43 +053082# Copy spellings.txt file into workspace
Patrick Williamsdf6170e2021-12-21 14:19:50 -060083cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${CONFIG_DIR}/${SPELLINGS_TXT} \
Manojkiran Edae6f120a2021-03-20 11:13:43 +053084"${WORKSPACE}"/${SPELLINGS_TXT}
85
Manojkiran Eda87111bb2021-08-14 11:26:16 +053086# Copy the eslintconfig file into workspce
87cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${CONFIG_DIR}/${ESLINT_CONFIG} \
88"${WORKSPACE}"/${ESLINT_CONFIG}
89
Matthew Barthc5dec752016-11-18 13:14:37 -060090# Configure docker build
Patrick Williams384d7412020-11-06 16:15:41 -060091cd "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}
Patrick Williams02871c92021-02-01 20:57:19 -060092echo "Building docker image with build-unit-test-docker"
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060093# Export input env variables
Andrew Geisslera6b93bf2019-01-03 10:23:38 -060094export BRANCH
Patrick Williams9b423102021-03-16 00:07:31 -050095DOCKER_IMG_NAME=$(./scripts/build-unit-test-docker)
96export DOCKER_IMG_NAME
Matthew Barthc5dec752016-11-18 13:14:37 -060097
Brad Bishop5d6688c2020-08-26 15:44:02 -040098# Allow the user to pass options through to unit-test.py:
99# EXTRA_UNIT_TEST_ARGS="-r 100" ...
100EXTRA_UNIT_TEST_ARGS="${EXTRA_UNIT_TEST_ARGS:+,${EXTRA_UNIT_TEST_ARGS/ /,}}"
101
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600102# Unit test and parameters
Benjamin Fairae58fe72022-05-17 15:22:24 -0700103if [ "${INTERACTIVE}" ]; then
104 UNIT_TEST="/bin/bash"
105else
106 UNIT_TEST="${DOCKER_WORKDIR}/${UNIT_TEST_PY},-w,${DOCKER_WORKDIR},\
Brad Bishop5d6688c2020-08-26 15:44:02 -0400107-p,${UNIT_TEST_PKG},-b,$BRANCH,-v${TEST_ONLY:+,-t}${NO_FORMAT_CODE:+,-n}\
108${EXTRA_UNIT_TEST_ARGS}"
Benjamin Fairae58fe72022-05-17 15:22:24 -0700109fi
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600110
Matthew Barthc5dec752016-11-18 13:14:37 -0600111# Run the docker unit test container with the unit test execution script
112echo "Executing docker image"
113docker run --cap-add=sys_admin --rm=true \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600114 --privileged=true \
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800115 -u "$USER" \
William A. Kennington IIId70980f2018-11-08 15:14:27 -0800116 -w "${DOCKER_WORKDIR}" -v "${WORKSPACE}":"${DOCKER_WORKDIR}" \
Andrew Jefferya153ee32018-03-09 13:22:04 +1030117 -e "MAKEFLAGS=${MAKEFLAGS}" \
Benjamin Fairae58fe72022-05-17 15:22:24 -0700118 -${INTERACTIVE:+i}t "${DOCKER_IMG_NAME}" \
Patrick Williams384d7412020-11-06 16:15:41 -0600119 "${DOCKER_WORKDIR}"/${DBUS_UNIT_TEST_PY} -u "${UNIT_TEST}" \
120 -f "${DBUS_SYS_CONFIG_FILE}"
Matthew Barthc5dec752016-11-18 13:14:37 -0600121
122# Timestamp for build
123echo "Unit test build completed, $(date)"
Zane Shelley5ab3e862019-07-24 13:14:57 -0500124
125# Clean up copied scripts.
Patrick Williams384d7412020-11-06 16:15:41 -0600126rm "${WORKSPACE}"/${UNIT_TEST_PY}
127rm "${WORKSPACE}"/${DBUS_UNIT_TEST_PY}
128rm "${WORKSPACE}"/${FORMAT_CODE_SH}
Manojkiran Eda87111bb2021-08-14 11:26:16 +0530129rm "${WORKSPACE}"/${ESLINT_CONFIG}
Zane Shelley5ab3e862019-07-24 13:14:57 -0500130