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` |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 27 | |
| 28 | # Trace bash processing. Set -e so when a step fails, we fail the build |
| 29 | set -uo pipefail |
| 30 | |
| 31 | # Default variables |
Andrew Geissler | a61acb5 | 2019-01-03 16:32:44 -0600 | [diff] [blame] | 32 | BRANCH=${BRANCH:-"master"} |
| 33 | DOCKER_IMG_NAME=${DOCKER_IMG_NAME:-"openbmc/ubuntu-unit-test-${BRANCH}"} |
Patrick Venture | 52164fd | 2018-08-28 16:12:47 -0700 | [diff] [blame] | 34 | DISTRO=${DISTRO:-ubuntu:bionic} |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 35 | OBMC_BUILD_SCRIPTS="openbmc-build-scripts" |
| 36 | UNIT_TEST_PY_DIR="scripts" |
| 37 | UNIT_TEST_PY="unit-test.py" |
Andrew Geissler | a28286d | 2018-01-10 11:00:00 -0800 | [diff] [blame] | 38 | FORMAT_CODE_SH="format-code.sh" |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 39 | DBUS_UNIT_TEST_PY="dbus-unit-test.py" |
| 40 | 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] | 41 | MAKEFLAGS="${MAKEFLAGS:-""}" |
William A. Kennington III | d70980f | 2018-11-08 15:14:27 -0800 | [diff] [blame] | 42 | DOCKER_WORKDIR="${DOCKER_WORKDIR:-$WORKSPACE}" |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 43 | |
| 44 | # Timestamp for job |
| 45 | echo "Unit test build started, $(date)" |
| 46 | |
Andrew Jeffery | 316ebd3 | 2018-03-08 13:05:32 +1030 | [diff] [blame] | 47 | if [[ "${DISTRO}" == "fedora" ]]; then |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 48 | echo "Distro (${DISTRO}) not supported, running as ubuntu" |
| 49 | DISTRO="ubuntu:latest" |
| 50 | fi |
| 51 | |
| 52 | # Check workspace, build scripts, and package to be unit tested exists |
| 53 | if [ ! -d "${WORKSPACE}" ]; then |
| 54 | echo "Workspace(${WORKSPACE}) doesn't exist, exiting..." |
| 55 | exit 1 |
| 56 | fi |
| 57 | if [ ! -d "${WORKSPACE}/${OBMC_BUILD_SCRIPTS}" ]; then |
| 58 | echo "Package(${OBMC_BUILD_SCRIPTS}) not found in ${WORKSPACE}, exiting..." |
| 59 | exit 1 |
| 60 | fi |
| 61 | if [ ! -d "${WORKSPACE}/${UNIT_TEST_PKG}" ]; then |
| 62 | echo "Package(${UNIT_TEST_PKG}) not found in ${WORKSPACE}, exiting..." |
| 63 | exit 1 |
| 64 | fi |
| 65 | |
| 66 | # Copy unit test script into workspace |
| 67 | cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${UNIT_TEST_PY} \ |
| 68 | ${WORKSPACE}/${UNIT_TEST_PY} |
| 69 | chmod a+x ${WORKSPACE}/${UNIT_TEST_PY} |
| 70 | |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 71 | # Copy dbus unit test script into workspace |
| 72 | cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${DBUS_UNIT_TEST_PY} \ |
| 73 | ${WORKSPACE}/${DBUS_UNIT_TEST_PY} |
| 74 | chmod a+x ${WORKSPACE}/${DBUS_UNIT_TEST_PY} |
| 75 | |
Andrew Geissler | a28286d | 2018-01-10 11:00:00 -0800 | [diff] [blame] | 76 | # Copy format code script into workspace |
| 77 | cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${FORMAT_CODE_SH} \ |
| 78 | ${WORKSPACE}/${FORMAT_CODE_SH} |
| 79 | chmod a+x ${WORKSPACE}/${FORMAT_CODE_SH} |
| 80 | |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 81 | # Configure docker build |
| 82 | cd ${WORKSPACE}/${OBMC_BUILD_SCRIPTS} |
| 83 | echo "Building docker image with build-unit-test-docker.sh" |
Andrew Geissler | a6b93bf | 2019-01-03 10:23:38 -0600 | [diff] [blame] | 84 | # Export input env variables |
| 85 | export DOCKER_IMG_NAME |
| 86 | export DISTRO |
| 87 | export BRANCH |
| 88 | ./build-unit-test-docker.sh |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 89 | |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 90 | # Unit test and parameters |
Andrew Geissler | a61acb5 | 2019-01-03 16:32:44 -0600 | [diff] [blame] | 91 | UNIT_TEST="${DOCKER_WORKDIR}/${UNIT_TEST_PY},-w,${DOCKER_WORKDIR},\ |
| 92 | -p,${UNIT_TEST_PKG},-b,$BRANCH,-v" |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 93 | |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 94 | # Run the docker unit test container with the unit test execution script |
| 95 | echo "Executing docker image" |
| 96 | docker run --cap-add=sys_admin --rm=true \ |
James Feist | 878df5c | 2018-07-26 14:54:28 -0700 | [diff] [blame] | 97 | --network host \ |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 98 | --privileged=true \ |
William A. Kennington III | be6aab2 | 2018-12-06 15:01:54 -0800 | [diff] [blame] | 99 | -u "$USER" \ |
William A. Kennington III | d70980f | 2018-11-08 15:14:27 -0800 | [diff] [blame] | 100 | -w "${DOCKER_WORKDIR}" -v "${WORKSPACE}":"${DOCKER_WORKDIR}" \ |
Andrew Jeffery | a153ee3 | 2018-03-09 13:22:04 +1030 | [diff] [blame] | 101 | -e "MAKEFLAGS=${MAKEFLAGS}" \ |
Matthew Barth | 33df879 | 2016-12-19 14:30:17 -0600 | [diff] [blame] | 102 | -t ${DOCKER_IMG_NAME} \ |
William A. Kennington III | d70980f | 2018-11-08 15:14:27 -0800 | [diff] [blame] | 103 | "${DOCKER_WORKDIR}"/${DBUS_UNIT_TEST_PY} -u ${UNIT_TEST} \ |
Leonel Gonzalez | 13ca380 | 2017-03-07 14:08:44 -0600 | [diff] [blame] | 104 | -f ${DBUS_SYS_CONFIG_FILE} |
Matthew Barth | c5dec75 | 2016-11-18 13:14:37 -0600 | [diff] [blame] | 105 | |
| 106 | # Timestamp for build |
| 107 | echo "Unit test build completed, $(date)" |