Skip to content

Commit 8e2fd21

Browse files
authored
Update ci.py
1 parent b7ca0c0 commit 8e2fd21

File tree

1 file changed

+6
-5
lines changed
  • github-ci/src/biocontainersci

1 file changed

+6
-5
lines changed

github-ci/src/biocontainersci/ci.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def build_manifest(self, f):
239239
hub_manifest = docker_whale.manifest.create(
240240
self.dockerhub_name(f),
241241
[self.dockerhub_name(f), self.dockerhub_name(f, is_arm=True)],
242-
amend=True
242+
ammend=True
243243
)
244244

245245
# Now, local hub:
@@ -276,7 +276,8 @@ def workflow_arm(self, f):
276276
squash=False,
277277
nocache=True,
278278
rm=True,
279-
platform="linux/arm64"
279+
platform="linux/arm64",
280+
pull=True
280281
)
281282
self.docker_logs(build_logs)
282283
except Exception as e:
@@ -301,8 +302,7 @@ def workflow_arm(self, f):
301302
squash=False,
302303
nocache=False,
303304
rm=True,
304-
platform="linux/arm64"
305-
305+
platform="linux/arm64",
306306
)
307307
if self.local_name(f):
308308
logging.info("tag for local registry")
@@ -384,7 +384,8 @@ def workflow(self, f):
384384
tag=base_container_name,
385385
squash=False,
386386
nocache=True,
387-
rm=True
387+
rm=True,
388+
pull=True
388389
)
389390
self.docker_logs(build_logs)
390391
except Exception as e:

0 commit comments

Comments
 (0)