mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-18 22:04:22 +01:00
Add support for building a rootfs image based on openSUSE Leap. Fixes: #33 Signed-off-by: Marco Vedovati <mvedovati@suse.com>
18 lines
388 B
Bash
18 lines
388 B
Bash
#
|
|
# Copyright (c) 2018 SUSE LLC
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
distrosSystemd=(fedora centos ubuntu debian suse)
|
|
distrosAgent=(alpine)
|
|
|
|
if [ $MACHINE_TYPE != "ppc64le" ]; then
|
|
distrosSystemd+=(clearlinux)
|
|
fi
|
|
|
|
# "Not testing eurleros on Travis: (timeout, see: https://github.com/kata-containers/osbuilder/issues/46)"
|
|
if [ -z "${TRAVIS:-}" ]; then
|
|
distrosSystemd+=(euleros)
|
|
fi
|
|
|