From 469fcf74851b26c44e7c37ee0020ce94cd4fd7b8 Mon Sep 17 00:00:00 2001 From: Brian Carey Date: Wed, 11 Dec 2024 10:20:31 +0000 Subject: [PATCH] publish: disable the publish of alpine containerdisk due to failures The alpine container disk build is failing and cuasing the publish job to not complete successfully[1] Disable this until issue with the build is resolved [1] https://github.com/kubevirt/kubevirtci/issues/1336 Signed-off-by: Brian Carey --- publish.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/publish.sh b/publish.sh index 718f992dc8..5db118ebf4 100755 --- a/publish.sh +++ b/publish.sh @@ -212,9 +212,10 @@ function main() { done # Currently the underlying build tool alpine-make-vm-image supports only x86_64 and aarch64 - if [ $ARCH == "amd64" ]; then - publish_alpine_container_disk - fi + # Disable alpine container disk publish - see https://github.com/kubevirt/kubevirtci/issues/1336 + #if [ $ARCH == "amd64" ]; then + # publish_alpine_container_disk + #fi push_gocli if [ $ARCH == "s390x" ]; then @@ -226,4 +227,4 @@ function main() { fi } -main "$@" \ No newline at end of file +main "$@"