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:
Marco Vedovati 2018-10-30 19:38:25 +01:00
parent ee7f2e1175
commit 97f38c7706
2 changed files with 8 additions and 8 deletions

View File

@ -22,3 +22,6 @@ INIT_PROCESS=systemd
# List of zero or more architectures to exclude from build,
# as reported by `uname -m`
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

View File

@ -3,15 +3,12 @@
#
# SPDX-License-Identifier: Apache-2.0
if [ -n "${CI:-}" ]; then
# "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
# List of distros not to test, when running all tests with test_images.sh
typeset -a skipWhenTestingAll
if [ -n "${TRAVIS:-}" ]; then
skipWhenTestingAll+=()
# (travis may timeout with euleros, see:
# https://github.com/kata-containers/osbuilder/issues/46)"
skipWhenTestingAll+=(euleros)
fi