Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 1 | #!/bin/bash -xe |
| 2 | |
| 3 | # This build script is for running the Jenkins unit test builds using docker. |
| 4 | # |
Andrew Geissler | 9f980d7 | 2019-01-03 14:19:43 -0600 | [diff] [blame] | 5 | # 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` |
Lei YU | 7ef9330 | 2019-11-06 13:53:21 +0800 | [diff] [blame] | 27 | # NO_FORMAT_CODE: Optional, do not run format-code.sh |
Brad Bishop | 5d6688c | 2020-08-26 15:44:02 -0400 | [diff] [blame] | 28 | # EXTRA_UNIT_TEST_ARGS: Optional, pass arguments to unit-test.py |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 29 | |
| 30 | # Trace bash processing. Set -e so when a step fails, we fail the build |
| 31 | set -uo pipefail |
| 32 | |
| 33 | # Default variables |
Andrew Geissler | a61acb5 | 2019-01-03 16:32:44 -0600 | [diff] [blame] | 34 | BRANCH=${BRANCH:-"master"} |
| 35 | DOCKER_IMG_NAME=${DOCKER_IMG_NAME:-"openbmc/ubuntu-unit-test-${BRANCH}"} |
Andrew Geissler | 595739b | 2020-05-19 14:21:49 -0500 | [diff] [blame] | 36 | DISTRO=${DISTRO:-ubuntu:focal} |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 37 | OBMC_BUILD_SCRIPTS="openbmc-build-scripts" |
| 38 | UNIT_TEST_PY_DIR="scripts" |
| 39 | UNIT_TEST_PY="unit-test.py" |
Andrew Geissler | a28286d | 2018-01-10 11:00:00 -0800 | [diff] [blame] | 40 | FORMAT_CODE_SH="format-code.sh" |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 41 | DBUS_UNIT_TEST_PY="dbus-unit-test.py" |
William A. Kennington III | 65b37fa | 2019-01-31 15:15:17 -0800 | [diff] [blame] | 42 | TEST_ONLY="${TEST_ONLY:-}" |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 43 | DBUS_SYS_CONFIG_FILE=${dbus_sys_config_file:-"/usr/share/dbus-1/system.conf"} |
Andrew Jeffery | a153ee3 | 2018-03-09 13:22:04 +1030 | [diff] [blame] | 44 | MAKEFLAGS="${MAKEFLAGS:-""}" |
William A. Kennington III | d70980f | 2018-11-08 15:14:27 -0800 | [diff] [blame] | 45 | DOCKER_WORKDIR="${DOCKER_WORKDIR:-$WORKSPACE}" |
Lei YU | 7ef9330 | 2019-11-06 13:53:21 +0800 | [diff] [blame] | 46 | NO_FORMAT_CODE="${NO_FORMAT_CODE:-}" |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 47 | |
| 48 | # Timestamp for job |
| 49 | echo "Unit test build started, $(date)" |
| 50 | |
Andrew Jeffery | 316ebd3 | 2018-03-08 13:05:32 +1030 | [diff] [blame] | 51 | if [[ "${DISTRO}" == "fedora" ]]; then |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 52 | echo "Distro (${DISTRO}) not supported, running as ubuntu" |
| 53 | DISTRO="ubuntu:latest" |
| 54 | fi |
| 55 | |
| 56 | # Check workspace, build scripts, and package to be unit tested exists |
| 57 | if [ ! -d "${WORKSPACE}" ]; then |
| 58 | echo "Workspace(${WORKSPACE}) doesn't exist, exiting..." |
| 59 | exit 1 |
| 60 | fi |
| 61 | if [ ! -d "${WORKSPACE}/${OBMC_BUILD_SCRIPTS}" ]; then |
| 62 | echo "Package(${OBMC_BUILD_SCRIPTS}) not found in ${WORKSPACE}, exiting..." |
| 63 | exit 1 |
| 64 | fi |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 65 | # shellcheck disable=SC2153 # UNIT_TEST_PKG is not misspelled. |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 66 | if [ ! -d "${WORKSPACE}/${UNIT_TEST_PKG}" ]; then |
| 67 | echo "Package(${UNIT_TEST_PKG}) not found in ${WORKSPACE}, exiting..." |
| 68 | exit 1 |
| 69 | fi |
| 70 | |
| 71 | # Copy unit test script into workspace |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 72 | cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${UNIT_TEST_PY} \ |
| 73 | "${WORKSPACE}"/${UNIT_TEST_PY} |
| 74 | chmod a+x "${WORKSPACE}"/${UNIT_TEST_PY} |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 75 | |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 76 | # Copy dbus unit test script into workspace |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 77 | cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${DBUS_UNIT_TEST_PY} \ |
| 78 | "${WORKSPACE}"/${DBUS_UNIT_TEST_PY} |
| 79 | chmod a+x "${WORKSPACE}"/${DBUS_UNIT_TEST_PY} |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 80 | |
Andrew Geissler | a28286d | 2018-01-10 11:00:00 -0800 | [diff] [blame] | 81 | # Copy format code script into workspace |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 82 | cp "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${FORMAT_CODE_SH} \ |
| 83 | "${WORKSPACE}"/${FORMAT_CODE_SH} |
| 84 | chmod a+x "${WORKSPACE}"/${FORMAT_CODE_SH} |
Andrew Geissler | a28286d | 2018-01-10 11:00:00 -0800 | [diff] [blame] | 85 | |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 86 | # Configure docker build |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 87 | cd "${WORKSPACE}"/${OBMC_BUILD_SCRIPTS} |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 88 | echo "Building docker image with build-unit-test-docker.sh" |
Andrew Geissler | a6b93bf | 2019-01-03 10:23:38 -0600 | [diff] [blame] | 89 | # Export input env variables |
| 90 | export DOCKER_IMG_NAME |
| 91 | export DISTRO |
| 92 | export BRANCH |
| 93 | ./build-unit-test-docker.sh |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 94 | |
Brad Bishop | 5d6688c | 2020-08-26 15:44:02 -0400 | [diff] [blame] | 95 | # Allow the user to pass options through to unit-test.py: |
| 96 | # EXTRA_UNIT_TEST_ARGS="-r 100" ... |
| 97 | EXTRA_UNIT_TEST_ARGS="${EXTRA_UNIT_TEST_ARGS:+,${EXTRA_UNIT_TEST_ARGS/ /,}}" |
| 98 | |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 99 | # Unit test and parameters |
Andrew Geissler | a61acb5 | 2019-01-03 16:32:44 -0600 | [diff] [blame] | 100 | UNIT_TEST="${DOCKER_WORKDIR}/${UNIT_TEST_PY},-w,${DOCKER_WORKDIR},\ |
Brad Bishop | 5d6688c | 2020-08-26 15:44:02 -0400 | [diff] [blame] | 101 | -p,${UNIT_TEST_PKG},-b,$BRANCH,-v${TEST_ONLY:+,-t}${NO_FORMAT_CODE:+,-n}\ |
| 102 | ${EXTRA_UNIT_TEST_ARGS}" |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 103 | |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 104 | # Run the docker unit test container with the unit test execution script |
| 105 | echo "Executing docker image" |
| 106 | docker run --cap-add=sys_admin --rm=true \ |
James Feist | 878df5c | 2018-07-26 14:54:28 -0700 | [diff] [blame] | 107 | --network host \ |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 108 | --privileged=true \ |
William A. Kennington III | be6aab2 | 2018-12-06 15:01:54 -0800 | [diff] [blame] | 109 | -u "$USER" \ |
William A. Kennington III | d70980f | 2018-11-08 15:14:27 -0800 | [diff] [blame] | 110 | -w "${DOCKER_WORKDIR}" -v "${WORKSPACE}":"${DOCKER_WORKDIR}" \ |
Andrew Jeffery | a153ee3 | 2018-03-09 13:22:04 +1030 | [diff] [blame] | 111 | -e "MAKEFLAGS=${MAKEFLAGS}" \ |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 112 | -t "${DOCKER_IMG_NAME}" \ |
| 113 | "${DOCKER_WORKDIR}"/${DBUS_UNIT_TEST_PY} -u "${UNIT_TEST}" \ |
| 114 | -f "${DBUS_SYS_CONFIG_FILE}" |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 115 | |
| 116 | # Timestamp for build |
| 117 | echo "Unit test build completed, $(date)" |
Zane Shelley | 5ab3e86 | 2019-07-24 13:14:57 -0500 | [diff] [blame] | 118 | |
| 119 | # Clean up copied scripts. |
Patrick Williams | 384d741 | 2020-11-06 16:15:41 -0600 | [diff] [blame] | 120 | rm "${WORKSPACE}"/${UNIT_TEST_PY} |
| 121 | rm "${WORKSPACE}"/${DBUS_UNIT_TEST_PY} |
| 122 | rm "${WORKSPACE}"/${FORMAT_CODE_SH} |
Zane Shelley | 5ab3e86 | 2019-07-24 13:14:57 -0500 | [diff] [blame] | 123 | |