Skip to content

Commit

Permalink
tests/docker: fall back more gracefully when pull fails
Browse files Browse the repository at this point in the history
I only spotted this in the small window between my testing with my
registry while waiting for the gitlab PR to go in. As we pre-pull the
registry image we know if that fails there isn't any point attempting
to use the cache. Fall back to the way we used to do it at that point.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20200709141327.14631-12-alex.bennee@linaro.org>
  • Loading branch information
stsquad committed Jul 11, 2020
1 parent 5067946 commit 85c5e69
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions tests/docker/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,13 +306,14 @@ def build_image(self, tag, docker_dir, dockerfile,
checksum = _text_checksum(_dockerfile_preprocess(dockerfile))

if registry is not None:
dockerfile = dockerfile.replace("FROM qemu/",
"FROM %s/qemu/" %
(registry))
# see if we can fetch a cache copy, may fail...
pull_args = ["pull", "%s/%s" % (registry, tag)]
self._do(pull_args, quiet=quiet)

if self._do(pull_args, quiet=quiet) == 0:
dockerfile = dockerfile.replace("FROM qemu/",
"FROM %s/qemu/" %
(registry))
else:
registry = None

tmp_df = tempfile.NamedTemporaryFile(mode="w+t",
encoding='utf-8',
Expand Down

0 comments on commit 85c5e69

Please sign in to comment.