Skip to content

Commit

Permalink
publish: disable the publish of alpine containerdisk due to failures
Browse files Browse the repository at this point in the history
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] kubevirt#1336

Signed-off-by: Brian Carey <[email protected]>
  • Loading branch information
brianmcarey committed Dec 11, 2024
1 parent 2639e36 commit 469fcf7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -226,4 +227,4 @@ function main() {
fi
}

main "$@"
main "$@"

0 comments on commit 469fcf7

Please sign in to comment.