mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-07 16:07:37 +00:00
move all osbuilder files into `tools` directory to be able to merge this into kata-containers repo. Signed-off-by: Salvador Fuentes <salvador.fuentes@intel.com>
69 lines
1.6 KiB
Bash
69 lines
1.6 KiB
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
|
|
typeset -a distros
|
|
arch="$(uname -m)"
|
|
sdir="${BASH_SOURCE[0]%/*}"
|
|
for distro in $(${sdir}/../rootfs-builder/rootfs.sh -l); do
|
|
distros+=("${distro}")
|
|
done
|
|
test_distros=()
|
|
test_distros+=("clearlinux")
|
|
test_distros+=("ubuntu")
|
|
|
|
skipForRustDistros=()
|
|
skipForRustDistros+=("alpine")
|
|
skipForRustDistros+=("euleros")
|
|
|
|
skipForRustArch=()
|
|
skipForRustArch+=("ppc64le")
|
|
skipForRustArch+=("s390x")
|
|
|
|
distro_in_set() {
|
|
local d=$1
|
|
shift
|
|
local dt
|
|
for dt in "$@"; do
|
|
if [ "${dt}" == "${d}" ]; then
|
|
return 0
|
|
fi
|
|
done
|
|
return 1
|
|
}
|
|
|
|
if [ -n "${CI:-}" ]; then
|
|
# CI tests may timeout with euleros, see:
|
|
# https://github.com/kata-containers/osbuilder/issues/46"
|
|
# Since too many distros timeout for now, we only test clearlinux and ubuntu. We can enable other distros when we fix timeout problem.
|
|
for distro in "${distros[@]}"; do
|
|
if distro_in_set "${distro}" "${test_distros[@]}"; then
|
|
continue
|
|
fi
|
|
skipWhenTestingAll+=("${distro}")
|
|
done
|
|
|
|
if [ "${RUST_AGENT:-}" == "yes" ]; then
|
|
# add skipForRustDistros to skipWhenTestingAll if it is not
|
|
for td in "${skipForRustDistros[@]}"; do
|
|
if distro_in_set "${td}" "${skipWhenTestingAll[@]}"; then
|
|
continue
|
|
fi
|
|
# not found in skipWhenTestingAll, add to it
|
|
skipWhenTestingAll+=("${td}")
|
|
done
|
|
|
|
if distro_in_set "${arch}" "${skipForRustArch[@]}"; then
|
|
for distro in "${test_distros[@]}"; do
|
|
if distro_in_set "${distro}" "${skipWhenTestingAll[@]}"; then
|
|
continue
|
|
fi
|
|
skipWhenTestingAll+=("${distro}")
|
|
done
|
|
fi
|
|
fi
|
|
fi
|