mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-19 14:24:26 +01:00
This reverts commit c0ea910273371f899ff2d8a1029c45ff45344260. Two scripts are still required for release and testing, which should have never been under obs-packaging dir in the first place. Let's revert, move the scripts / update references to it, and then we can remove the remaining obs-packaging/ tooling. Signed-off-by: Eric Ernst <eric.g.ernst@gmail.com>
20 lines
423 B
Bash
Executable File
20 lines
423 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
#NOTES:
|
|
# - update qemu and the kernel first, they take longer to build
|
|
# - runtime is always built at the end, as it depends on all the other listed
|
|
# packages, and we need to get the full version of all those.
|
|
|
|
typeset -a OBS_PKGS_PROJECTS
|
|
|
|
OBS_PKGS_PROJECTS+=(
|
|
qemu-vanilla
|
|
linux-container
|
|
kata-containers-image
|
|
runtime
|
|
)
|