Skip to content

Commit c38a32a

Browse files
authored
Update ci.py
1 parent bcdbe18 commit c38a32a

File tree

1 file changed

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

1 file changed

+5
-0
lines changed

github-ci/src/biocontainersci/ci.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,11 @@ def workflow_arm(self, f):
279279
logging.exception('[ci][build]ARM error ' + str(e))
280280
return False
281281

282+
arch = docker_image.attrs.get('Architecture', "")
283+
if not (arch and "arm64" in arch):
284+
# Failed to build, fail silently
285+
return False
286+
282287
status = False
283288
try:
284289
labels = docker_image.labels

0 commit comments

Comments
 (0)