mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 11:58:41 +00:00
Skip packaging for qemu-lite when releasing packages for non-amd64 archs. Fixes: #206 Signed-off-by: Nitesh Konkar niteshkonkar@in.ibm.com
22 lines
453 B
Bash
Executable File
22 lines
453 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
#Note:Lets update qemu and the kernel first, they take longer to build.
|
|
#Note: runtime is build at the end to get the version from all its dependencies.
|
|
OBS_PKGS_PROJECTS=(
|
|
qemu-vanilla
|
|
kernel
|
|
kata-containers-image
|
|
proxy
|
|
shim
|
|
ksm-throttler
|
|
runtime
|
|
)
|
|
|
|
if [ "$(uname -m)" == "x86_64" ]; then
|
|
OBS_PKGS_PROJECTS=("qemu-lite" "${OBS_PKGS_PROJECTS[@]}")
|
|
fi
|