mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-15 12:24:26 +01:00
euleros mirrors are down almost all time, don't fail if euleros rootfs or image can't be generated. fixes #238 Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com> Signed-off-by: Julio Montes <julio.montes@intel.com>
14 lines
341 B
Bash
14 lines
341 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 "${CI:-}" ]; then
|
|
# CI tests may timeout with euleros, see:
|
|
# https://github.com/kata-containers/osbuilder/issues/46"
|
|
skipWhenTestingAll+=(euleros)
|
|
fi
|