mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-28 18:54:37 +01:00
Move the test configuration in the distro-specific config.sh file, for better control of what to include/exclude from testing based on the test environment. test_config.sh is still used to exclude specific distros from being tested, when running tests in bulk. Fixes: #182 Signed-off-by: Marco Vedovati <mvedovati@suse.com>
19 lines
482 B
Bash
19 lines
482 B
Bash
#
|
|
# Copyright (c) 2018 SUSE
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
OS_VERSION=${OS_VERSION:-9.5}
|
|
|
|
# Set OS_NAME to the desired debian "codename"
|
|
OS_NAME=${OS_NAME:-"stretch"}
|
|
|
|
# NOTE: Re-using ubuntu rootfs configuration, see 'ubuntu' folder for full content.
|
|
source $script_dir/ubuntu/$CONFIG_SH
|
|
|
|
# Init process must be one of {systemd,kata-agent}
|
|
INIT_PROCESS=systemd
|
|
# List of zero or more architectures to exclude from build,
|
|
# as reported by `uname -m`
|
|
ARCH_EXCLUDE_LIST=()
|