Skip to content

Commit 469fcf7

Browse files
committed
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] kubevirt#1336 Signed-off-by: Brian Carey <[email protected]>
1 parent 2639e36 commit 469fcf7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

publish.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,10 @@ function main() {
212212
done
213213

214214
# Currently the underlying build tool alpine-make-vm-image supports only x86_64 and aarch64
215-
if [ $ARCH == "amd64" ]; then
216-
publish_alpine_container_disk
217-
fi
215+
# Disable alpine container disk publish - see https://github.com/kubevirt/kubevirtci/issues/1336
216+
#if [ $ARCH == "amd64" ]; then
217+
# publish_alpine_container_disk
218+
#fi
218219

219220
push_gocli
220221
if [ $ARCH == "s390x" ]; then
@@ -226,4 +227,4 @@ function main() {
226227
fi
227228
}
228229

229-
main "$@"
230+
main "$@"

0 commit comments

Comments
 (0)