mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-09-28 20:15:51 +00:00
Include cloud-hypervisor to Kata release tarball Fixes: #792 Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
25 lines
435 B
Bash
Executable File
25 lines
435 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2019 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
supported_artifacts=(
|
|
"install_clh"
|
|
"install_docker_config_script"
|
|
"install_experimental_kernel"
|
|
"install_firecracker"
|
|
"install_image"
|
|
"install_kata_components"
|
|
"install_kernel"
|
|
"install_qemu"
|
|
"install_qemu_virtiofsd"
|
|
)
|
|
|
|
for c in ${supported_artifacts[@]}; do echo $c; done
|