Skip to content

Commit

Permalink
rootfs-builder: exclude unsupported archs from euleros
Browse files Browse the repository at this point in the history
For euleros, it has supported aarch64 starting from v2.3,
but here is the sad part, there existed bugs in their 2.3.x image,
this bug existed in both x86_64 and aarch64 image.
related issue euleros/euleros-docker-images/kata-containers#13
(euleros/euleros-docker-images#13) has been raised.

Fixes: kata-containers#320

Signed-off-by: Penny Zheng <[email protected]>
  • Loading branch information
Pennyzct committed Jun 24, 2019
1 parent 7dc15c2 commit 5a5ffa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootfs-builder/euleros/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ PACKAGES="iptables chrony"
INIT_PROCESS=systemd
# List of zero or more architectures to exclude from build,
# as reported by `uname -m`
ARCH_EXCLUDE_LIST=()
ARCH_EXCLUDE_LIST=( aarch64 ppc64le s390x )
# Allow the build to fail without generating an error.
# For more info see: https://github.com/kata-containers/osbuilder/issues/190
BUILD_CAN_FAIL=1
Expand Down

0 comments on commit 5a5ffa4

Please sign in to comment.