mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-30 17:22:33 +00:00
obs-packaging: Skip packaging qemu-lite for non-amd64 arch
qemu-lite is required to be packaged only for amd64 arch. Skip it for all other architectures. Fixes: #152 Signed-off-by: Nitesh Konkar niteshkonkar@in.ibm.com
This commit is contained in:
parent
a7ec33d0ff
commit
d72fb8f397
@ -65,6 +65,10 @@ eom
|
||||
|
||||
pushd "${script_dir}"
|
||||
for p in "${projects[@]}"; do
|
||||
if [[ "$GO_ARCH" != "amd64" && "$p" == "qemu-lite" ]]; then
|
||||
echo "Skipping packaging qemu-lite as its only for amd64 arch"
|
||||
continue
|
||||
fi
|
||||
pushd "$p" >>/dev/null
|
||||
update_cmd="./update.sh"
|
||||
if [ -n "${PUSH}" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user