Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
ci: reconstructure image-type and initrd for architecture-independant
Browse files Browse the repository at this point in the history
as default image-type and initrd weren't for non-x86_64 arch,
reconstructuring them to be architecture-specific.

Fixes: #461

Signed-off-by: Penny Zheng <penny.zheng@arm.com>
Signed-off-by: Jianyong Wu <jianyong.wu@arm.com>
Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
  • Loading branch information
Pennyzct committed Jul 9, 2018
1 parent b2bec33 commit 67de5d4
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,34 @@ assets:
Root filesystem disk image used to boot the guest virtual
machine.
url: "https://github.com/kata-containers/osbuilder"
release: "20640"
architecture:
aarch64:
name: "fedora"
version: "latest"
ppc64le:
name: "centos"
version: "latest"
x86_64:
name: &default-image-name "clearlinux"
version: "20640"
meta:
image-type: "clearlinux"
image-type: *default-image-name

initrd:
description: |
Root filesystem initrd used to boot the guest virtual
machine.
url: "https://github.com/kata-containers/osbuilder"
meta:
base-os: "alpine"
os-version: "3.7"
architecture:
aarch64:
name: &default-initrd-name "alpine"
version: &default-initrd-version "3.7"
ppc64le:
name: *default-initrd-name
version: *default-initrd-version
x86_64:
name: *default-initrd-name
version: *default-initrd-version

kernel:
description: "Linux kernel optimised for virtual machines"
Expand Down

0 comments on commit 67de5d4

Please sign in to comment.