Skip to content

Commit

Permalink
test: disable arm64 test until osbuild#691 is fixed
Browse files Browse the repository at this point in the history
Unfortunately ostree is now using openat2 which is currently not
supported by qemu-user so the cross-arch install fails. We are
looking into this but for now disable the test to unblock
other landing as there is nothing bib can do to fix this.
  • Loading branch information
mvo5 committed Aug 28, 2024
1 parent 8f80115 commit fb5091f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test/testcases.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,12 @@ def gen_testcases(what): # pylint: disable=too-many-return-statements
]
# do a cross arch test too
if platform.machine() == "x86_64":
# todo: add fedora:eln
test_cases.append(
TestCaseCentos(image="raw", target_arch="arm64"))
# TODO: re-enable once
# https://github.com/osbuild/bootc-image-builder/issues/619
# is resolved
# test_cases.append(
# TestCaseCentos(image="raw", target_arch="arm64"))
pass
elif platform.machine() == "arm64":
# TODO: add arm64->x86_64 cross build test too
pass
Expand Down

0 comments on commit fb5091f

Please sign in to comment.