1#!/bin/bash -xe 2# 3# Build the required docker image to run QEMU and Robot test cases 4 5# Script Variables: 6# UBUNTU_MIRROR: <optional, the URL of a mirror of Ubuntu to override the 7# default ones in /etc/apt/sources.list> 8# default is empty, and no mirror is used. 9# PIP_MIRROR: <optional, the URL of a PIP mirror> 10# default is empty, and no mirror is used. 11# 12# Parameters: 13# parm1: <optional, the name of the docker image to generate> 14# default is openbmc/ubuntu-robot-qemu 15# param2: <optional, the distro to build a docker image against> 16 17set -uo pipefail 18 19http_proxy=${http_proxy:-} 20 21DOCKER_IMG_NAME=${1:-"openbmc/ubuntu-robot-qemu"} 22DISTRO=${2:-"ubuntu:jammy"} 23UBUNTU_MIRROR=${UBUNTU_MIRROR:-""} 24PIP_MIRROR=${PIP_MIRROR:-""} 25 26# Determine our architecture, ppc64le or the other one 27if [ "$(uname -m)" == "ppc64le" ]; then 28 DOCKER_BASE="ppc64le/" 29else 30 DOCKER_BASE="" 31fi 32 33MIRROR="" 34if [[ -n "${UBUNTU_MIRROR}" ]]; then 35 MIRROR="RUN echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME) main restricted universe multiverse\" > /etc/apt/sources.list && \ 36 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-updates main restricted universe multiverse\" >> /etc/apt/sources.list && \ 37 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-security main restricted universe multiverse\" >> /etc/apt/sources.list && \ 38 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-proposed main restricted universe multiverse\" >> /etc/apt/sources.list && \ 39 echo \"deb ${UBUNTU_MIRROR} \$(. /etc/os-release && echo \$VERSION_CODENAME)-backports main restricted universe multiverse\" >> /etc/apt/sources.list" 40fi 41 42PIP_MIRROR_CMD="" 43if [[ -n "${PIP_MIRROR}" ]]; then 44 PIP_HOSTNAME=$(echo "${PIP_MIRROR}" | awk -F[/:] '{print $4}') 45 PIP_MIRROR_CMD="RUN mkdir -p \${HOME}/.pip && \ 46 echo \"[global]\" > \${HOME}/.pip/pip.conf && \ 47 echo \"index-url=${PIP_MIRROR}\" >> \${HOME}/.pip/pip.conf &&\ 48 echo \"[install]\" >> \${HOME}/.pip/pip.conf &&\ 49 echo \"trusted-host=${PIP_HOSTNAME}\" >> \${HOME}/.pip/pip.conf" 50fi 51 52################################# docker img # ################################# 53# Create docker image that can run QEMU and Robot Tests 54Dockerfile=$(cat << EOF 55FROM ${DOCKER_BASE}${DISTRO} 56 57${MIRROR} 58 59ARG DEBIAN_FRONTEND=noninteractive 60 61RUN apt-get update && apt-get install -yy \ 62 debianutils \ 63 gawk \ 64 git \ 65 python2 \ 66 python2-dev \ 67 python-setuptools \ 68 python3 \ 69 python3-dev \ 70 python3-setuptools \ 71 socat \ 72 texinfo \ 73 wget \ 74 gcc \ 75 libffi-dev \ 76 libssl-dev \ 77 xterm \ 78 mwm \ 79 ssh \ 80 vim \ 81 iputils-ping \ 82 sudo \ 83 cpio \ 84 unzip \ 85 diffstat \ 86 expect \ 87 curl \ 88 build-essential \ 89 libpixman-1-0 \ 90 libglib2.0-0 \ 91 sshpass \ 92 libasound2 \ 93 libfdt1 \ 94 libpcre3 \ 95 openssl \ 96 libxml2-dev \ 97 libxslt-dev \ 98 python3-pip \ 99 ipmitool \ 100 xvfb \ 101 rustc 102 103RUN apt-get update -qqy \ 104 && apt-get -qqy --no-install-recommends install firefox \ 105 && wget --no-verbose -O /tmp/firefox.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0/linux-x86_64/en-US/firefox-72.0.tar.bz2 \ 106 && apt-get -y purge firefox \ 107 && tar -C /opt -xjf /tmp/firefox.tar.bz2 \ 108 && mv /opt/firefox /opt/firefox-72.0 \ 109 && ln -fs /opt/firefox-72.0/firefox /usr/bin/firefox 110 111ENV HOME ${HOME} 112 113${PIP_MIRROR_CMD} 114 115RUN pip3 install \ 116 tox \ 117 requests \ 118 retrying \ 119 websocket-client \ 120 json2yaml \ 121 robotframework \ 122 robotframework-requests \ 123 robotframework-jsonlibrary \ 124 robotframework-sshlibrary \ 125 robotframework-scplibrary \ 126 pysnmp \ 127 redfish>=3.1.7 \ 128 beautifulsoup4 --upgrade \ 129 lxml \ 130 jsonschema \ 131 redfishtool \ 132 redfish_utilities \ 133 robotframework-httplibrary \ 134 robotframework-seleniumlibrary \ 135 robotframework-xvfb \ 136 robotframework-angularjs \ 137 scp \ 138 selenium==3.141.0 \ 139 urllib3 \ 140 click \ 141 xvfbwrapper 142 143RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.29.0/geckodriver-v0.29.0-linux64.tar.gz \ 144 && tar xvzf geckodriver-*.tar.gz \ 145 && mv geckodriver /usr/local/bin \ 146 && chmod a+x /usr/local/bin/geckodriver 147 148RUN grep -q ${GROUPS[0]} /etc/group || groupadd -g ${GROUPS[0]} ${USER} 149RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -l -m -u ${UID} -g ${GROUPS[0]} \ 150 ${USER} 151USER ${USER} 152RUN /bin/bash 153EOF 154) 155 156################################# docker img # ################################# 157 158PROXY_ARGS="" 159if [[ -n "${http_proxy}" ]]; then 160 PROXY_ARGS="--build-arg http_proxy=${http_proxy} --build-arg https_proxy=${http_proxy}" 161fi 162 163# Build above image 164# shellcheck disable=SC2086 # PROXY_ARGS is intentionally word-split. 165docker build ${PROXY_ARGS} -t "${DOCKER_IMG_NAME}" - <<< "${Dockerfile}" 166