mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-24 14:32:33 +00:00
With Kata 1.x EOL, the Go agent is no more. So, remove support for it from the osbuilder scripts. This removes the RUST_AGENT variable, treating it as always true. fixes #2396 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
64 lines
1.4 KiB
Bash
64 lines
1.4 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")
|
|
|
|
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
|
|
# 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
|
|
|
|
# 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
|