mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-03 18:47:03 +00:00
tests: allow euleros rootfs build to fail
Update test config for euleros to allow build failures. Signed-off-by: Marco Vedovati <mvedovati@suse.com>
This commit is contained in:
parent
ee7f2e1175
commit
97f38c7706
@ -22,3 +22,6 @@ INIT_PROCESS=systemd
|
|||||||
# List of zero or more architectures to exclude from build,
|
# List of zero or more architectures to exclude from build,
|
||||||
# as reported by `uname -m`
|
# as reported by `uname -m`
|
||||||
ARCH_EXCLUDE_LIST=()
|
ARCH_EXCLUDE_LIST=()
|
||||||
|
# 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
|
||||||
|
@ -3,15 +3,12 @@
|
|||||||
#
|
#
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
# List of distros not to test, when running all tests with test_images.sh
|
||||||
if [ -n "${CI:-}" ]; then
|
typeset -a skipWhenTestingAll
|
||||||
# "Not testing eurleros on Jenkins or Travis:
|
|
||||||
# (unreliable mirros, see: https://github.com/kata-containers/osbuilder/issues/182)
|
|
||||||
# (timeout, see: https://github.com/kata-containers/osbuilder/issues/46)"
|
|
||||||
skipWhenTestingAll=(euleros)
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "${TRAVIS:-}" ]; then
|
if [ -n "${TRAVIS:-}" ]; then
|
||||||
skipWhenTestingAll+=()
|
# (travis may timeout with euleros, see:
|
||||||
|
# https://github.com/kata-containers/osbuilder/issues/46)"
|
||||||
|
skipWhenTestingAll+=(euleros)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user