diff --git a/configs/cb-aarch64.yaml b/configs/cb-aarch64.yaml index ff96466..0ce22b8 100644 --- a/configs/cb-aarch64.yaml +++ b/configs/cb-aarch64.yaml @@ -8,12 +8,6 @@ rebuild_after: days: 5 images: - rootfs-minimal: - target: ve/docker - kinds: - - tar.xz - tests: - - method: docker rootfs-systemd: target: ve/systemd-networkd kinds: diff --git a/configs/cb-ve-x86.yaml b/configs/cb-ve-x86.yaml index 577d7a6..29fa0a3 100644 --- a/configs/cb-ve-x86.yaml +++ b/configs/cb-ve-x86.yaml @@ -8,12 +8,6 @@ rebuild_after: days: 5 images: - rootfs-minimal: - target: ve/docker - kinds: - - tar.xz - tests: - - method: docker rootfs-systemd: target: ve/systemd-networkd kinds: diff --git a/configs/container-aarch64.yaml b/configs/container-aarch64.yaml new file mode 100644 index 0000000..57cd254 --- /dev/null +++ b/configs/container-aarch64.yaml @@ -0,0 +1,32 @@ +--- +remote: 'builder@cloud-builder.office.basealt.ru:/home/builder/images/{branch}/{arch}' +repository_url: http://mirror.yandex.ru/altlinux/{branch}/branch +try_build_all: True +log_level: debug + +rebuild_after: + days: 5 + +images: + rootfs-minimal: + target: ve/docker + kinds: + - tar.xz + tests: + - method: docker + +branches: + Sisyphus: + arches: + aarch64: + repository_url: http://ftp.altlinux.org/pub/distributions/ALTLinux/{branch} + p10: + arches: + aarch64: + branding: alt-container + p11: + arches: + aarch64: + branding: alt-container + +... diff --git a/configs/container-x86.yaml b/configs/container-x86.yaml new file mode 100644 index 0000000..06f015f --- /dev/null +++ b/configs/container-x86.yaml @@ -0,0 +1,34 @@ +--- +remote: '/home/builder/images/{branch}/{arch}' +repository_url: copy:///space/ALT/{branch} +try_build_all: True +log_level: debug + +rebuild_after: + days: 5 + +images: + rootfs-minimal: + target: ve/docker + kinds: + - tar.xz + tests: + - method: docker + +branches: + Sisyphus: + arches: + i586: + x86_64: + p10: + arches: + i586: + x86_64: + branding: alt-container + p11: + arches: + i586: + x86_64: + branding: alt-container + +...