mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-02 22:14:27 +01:00
Update test config for euleros to allow build failures. Signed-off-by: Marco Vedovati <mvedovati@suse.com>
15 lines
346 B
Bash
15 lines
346 B
Bash
#
|
|
# Copyright (c) 2018 SUSE LLC
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# List of distros not to test, when running all tests with test_images.sh
|
|
typeset -a skipWhenTestingAll
|
|
|
|
if [ -n "${TRAVIS:-}" ]; then
|
|
# (travis may timeout with euleros, see:
|
|
# https://github.com/kata-containers/osbuilder/issues/46)"
|
|
skipWhenTestingAll+=(euleros)
|
|
fi
|
|
|