blob: 37c8f287d8f78fe0e60e9e0d1ac48b27c1118b7e [file] [log] [blame]
Matthew Barthb4aea672016-11-10 14:59:52 -06001#!/bin/bash -xe
2#
3# Build the required docker image to run package unit tests
4#
5# Parameters:
6# param1: <optional, the name of the docker image to generate>
7# default is openbmc/ubuntu-unit-test
8# param2: <optional, the distro to build a docker image against>
9# default is ubuntu:latest
10
11set -uo pipefail
12
13DOCKER_IMG_NAME=${1:-"openbmc/ubuntu-unit-test"}
14DISTRO=${2:-"ubuntu:latest"}
15
Matthew Barthccb7f852016-11-23 17:43:02 -060016# Disable autom4te cache as workaround to permission issue
17AUTOM4TE_CFG="/root/.autom4te.cfg"
18AUTOM4TE="begin-language: \"Autoconf-without-aclocal-m4\"\nargs: --no-cache\n\
19end-language: \"Autoconf-without-aclocal-m4\""
20
Matthew Barthb4aea672016-11-10 14:59:52 -060021# Determine the architecture
22ARCH=$(uname -m)
23case ${ARCH} in
24 "ppc64le")
25 DOCKER_BASE="ppc64le/"
26 ;;
27 "x86_64")
28 DOCKER_BASE=""
29 ;;
30 *)
31 echo "Unsupported system architecture(${ARCH}) found for docker image"
32 exit 1
33esac
34
35################################# docker img # #################################
36# Create docker image that can run package unit tests
37if [[ "${DISTRO}" == "ubuntu"* ]]; then
38Dockerfile=$(cat << EOF
39FROM ${DOCKER_BASE}${DISTRO}
40
41ENV DEBIAN_FRONTEND noninteractive
42
43RUN apt-get update && apt-get install -yy \
44 gcc \
45 g++ \
46 libc6-dev \
47 libtool \
48 cmake \
49 python \
50 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -060051 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -060052 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -060053 python-mako \
Matthew Barthb4aea672016-11-10 14:59:52 -060054 python-setuptools \
Saqib Khan362ca852017-03-21 10:48:46 -050055 python3 \
56 python3-dev\
57 python3-yaml \
58 python3-mako \
59 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -060060 pkg-config \
61 autoconf \
62 libsystemd-dev \
Matthew Barth92f93872017-02-08 11:19:27 -060063 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -050064 libevdev-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -060065 sudo \
66 wget \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -060067 git \
Saqib Khan5158a322017-10-23 11:31:24 -050068 dbus \
69 iputils-ping
Matthew Barthb4aea672016-11-10 14:59:52 -060070
Matthew Bartha2366d92017-01-31 09:46:20 -060071RUN easy_install pip
72RUN pip install inflection
73
Matthew Barthb4aea672016-11-10 14:59:52 -060074RUN wget http://ftpmirror.gnu.org/autoconf-archive/autoconf-archive-2016.09.16.tar.xz
75RUN tar -xJf autoconf-archive-2016.09.16.tar.xz
76RUN cd autoconf-archive-2016.09.16 && ./configure --prefix=/usr && make && make install
77
Brad Bishopfb2adeb2017-05-30 18:25:14 -040078RUN wget https://github.com/google/googletest/archive/release-1.8.0.tar.gz
79RUN tar -xzf release-1.8.0.tar.gz
80RUN cd googletest-release-1.8.0 && cmake -DBUILD_SHARED_LIBS=ON . && make && \
81cp -a googletest/include/gtest /usr/include && \
82cp -a googlemock/include/gmock /usr/include && \
83cp -a googlemock/gtest/libgtest.so /usr/lib/ && \
84cp -a googlemock/gtest/libgtest_main.so /usr/lib/ && \
85cp -a googlemock/libgmock.so /usr/lib/ && \
86cp -a googlemock/libgmock_main.so /usr/lib/
Matthew Barthb4aea672016-11-10 14:59:52 -060087
Deepak Kodihallide7767c2017-06-21 02:19:14 -050088RUN wget https://github.com/USCiLab/cereal/archive/v1.2.2.tar.gz
89RUN tar -xzf v1.2.2.tar.gz
90RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/
91
Matthew Barthb4aea672016-11-10 14:59:52 -060092RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
93RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
94
Matthew Barthccb7f852016-11-23 17:43:02 -060095RUN echo '${AUTOM4TE}' > ${AUTOM4TE_CFG}
96
Matthew Barthb4aea672016-11-10 14:59:52 -060097RUN /bin/bash
98EOF
99)
100fi
101################################# docker img # #################################
102
103# Build above image
104docker build -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"