f78e45c304
This includes the building of OpenSUSE Leap 15 in checks/gates. As the build of each project requires the building of the requirements first, added to the fact that a new distro is added into the jobs, this extends the timeout for the base job beyond the maximum time for requirements, so that all the projects (excluding requirements) have more time to complete. Change-Id: I73b055b3942a6d80b8474544a9d65df0b3005e15
11 lines
470 B
Docker
11 lines
470 B
Docker
ARG FROM=opensuse/leap:15
|
|
FROM ${FROM}
|
|
|
|
ARG PACKAGE_MIRROR=http://download.opensuse.org/
|
|
ARG PIP_INDEX_URL=https://pypi.python.org/simple/
|
|
ARG PIP_TRUSTED_HOST=pypi.python.org
|
|
ENV PIP_INDEX_URL=${PIP_INDEX_URL}
|
|
ENV PIP_TRUSTED_HOST=${PIP_TRUSTED_HOST}
|
|
|
|
RUN for filename in $(grep -Rl enabled=1 /etc/zypp/repos.d/); do sed -i "s|http://download.opensuse.org/|${PACKAGE_MIRROR}|" $filename; done && zypper refresh && zypper up -y && zypper install -y tar gzip which unzip
|