Hi,
I’m trying to build and push Docker Images to DockerHub.
I followed this tutorial, and adapted it to my setting.
Mainly by setting up a workflow to build and push my 6 docker images in parallel.
I ran into the Too long with no output (exceeded 10m0s) error.
So I added a no_output_timeout: 15m on the 2 jobs that failed.
But it seems like it’s not taken into account, because I still got the same Too long with no output (exceeded 10m0s) error.
Any idea?
I removed some all jobs but one, just to show one that is failing:
version: 2.0
jobs:
vepgrch38:
docker:
- image: circleci/buildpack-deps:stretch
environment:
GENOME: GRCh38
SPECIES: homo_sapiens
VEP_VERSION: 95
steps:
- checkout
- setup_remote_docker
- run:
command: docker build -t nfcore/sarekvep:dev.${GENOME} containers/vep/. --build-arg GENOME=${GENOME} --build-arg SPECIES=${SPECIES} --build-arg VEP_VERSION=${VEP_VERSION}
- run:
name: Push Docker Image to DockerHub
command: echo "$DOCKERHUB_PASS" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin ; docker push nfcore/sarekvep:dev.${GENOME}
no_output_timeout: 45m
workflows:
version: 2
build:
jobs:
- vepgrch38
OK,
I think I found out the issue on my own…
The no_output_timeout was on the push part, and not on the build part…
Sorry