mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
5e728f51b2
The upstream reported issue suggests adding a `timeout` value in the Jenkins Jobs Builder configuration. This looks like a nicer workaround than downgrading urllib3. Fixes: #3946 See-also: https://storyboard.openstack.org/#!/story/2010752 Signed-off-by: Niels de Vos <ndevos@ibm.com>
23 lines
570 B
Docker
23 lines
570 B
Docker
FROM quay.io/centos/centos:stream9
|
|
|
|
RUN true \
|
|
&& dnf -y install git make python3-pip \
|
|
&& pip3 install jenkins-job-builder \
|
|
&& dnf -y clean all \
|
|
&& true
|
|
|
|
ENV MAKE_TARGET=${MAKE_TARGET:-test}
|
|
|
|
# Environment that needs to be set before executing checkout-repo.sh
|
|
# ENV GIT_REPO=https://github.com/ceph/ceph-csi
|
|
# ENV GIT_REF=ci/centos
|
|
ADD checkout-repo.sh /opt/build/
|
|
|
|
# make WORKDIR writable, otherwise git checkout fails
|
|
RUN chmod ugo=rwx /opt/build
|
|
|
|
ENV HOME=/opt/build
|
|
WORKDIR /opt/build
|
|
|
|
CMD ["sh", "-c", "./checkout-repo.sh && make -C deploy ${MAKE_TARGET}"]
|