Hi all,
One of the jobs I have in a Pipeline is hanging in a simple Dockerfile build, as below. This is causing the job to time out. It started happening for the past ~2 weeks, while it has been working fine before and also in my local box. I have colleagues with similar symptoms. We are using registry.gitlab.com/citygro/docker-and-compose
as an image and setting service
tag to docker:dind
in the gitlab ci file.
RUN echo "--------------- Installing API flask app ---------------"
COPY . $SOURCE
The last few lines from the job log as in gitlab UI are below for reference:
Setting up gfortran (4:6.3.0-4) ...
update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode
update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode
Setting up python-keyring (10.1-1) ...
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Removing intermediate container de392de0df01
---> c4fdfd991196
Step 4/16 : RUN echo "--------------- Installing API flask app ---------------"
---> Running in d5f4db842c60
--------------- Installing API flask app ---------------
Pulling docker image gitlab/gitlab-runner-helper:x86_64-12a489c4 ...
00:00
ERROR: Job failed: execution took longer than 30m0s seconds
This build normally takes < 10 min and Iāve reduced the default 1h timeout to 30 minutes to avoid over-consumption of build minutes quota.
Has anyone experienced this? Any insights?
Thanks!