mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-08 17:04:26 +01:00
artifact-list.sh is created so a builder can quickly determine which artifacts may be built within this repository. I user may get this list, which indicates exactly which functions are available within ./release/kata-deploy-binaries.sh for building. Signed-off-by: Eric Ernst <eric.ernst@intel.com>
24 lines
419 B
Bash
Executable File
24 lines
419 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_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
|