Skip to content

Commit

Permalink
Merge pull request #1337 from brianmcarey/disable-alpine-publish
Browse files Browse the repository at this point in the history
publish: disable the publish of alpine containerdisk due to failures
  • Loading branch information
dhiller authored Dec 11, 2024
2 parents 2639e36 + 469fcf7 commit e32f3af
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 e32f3af

Please sign in to comment.