2021-06-28 21:40:42 +03:00
---
2024-09-16 12:42:47 +03:00
remote : 'builder@cloud-builder.office.basealt.ru:/home/builder/images/{branch}/{arch}'
2024-08-28 17:18:38 +03:00
repository_url : http://mirror.yandex.ru/altlinux/{branch}/branch
2021-06-28 21:40:42 +03:00
try_build_all : True
log_level : debug
rebuild_after :
days : 5
images :
rootfs-minimal :
target : ve/docker
kinds :
- tar.xz
tests :
- method : docker
rootfs-systemd :
target : ve/systemd-networkd
kinds :
- tar.xz
tests :
- method : lxd
scripts :
- securetty
2024-08-28 17:18:38 +03:00
- machine_id
packages :
- apt-scripts
- systemd-settings-disable-kill-user-processes
2021-06-28 21:40:42 +03:00
rootfs-systemd-etcnet :
target : ve/systemd-etcnet
kinds :
- tar.xz
tests :
- method : lxd
scripts :
- securetty
2024-08-28 17:18:38 +03:00
- machine_id
2021-06-28 21:40:42 +03:00
rootfs-sysvinit :
target : ve/sysvinit-etcnet
kinds :
- tar.xz
tests :
- method : lxd
scripts :
- securetty
cloud :
target : vm/cloud-systemd
kinds :
- qcow2c
2024-08-28 17:18:38 +03:00
scripts :
- machine_id
packages :
- update-kernel
- apt-scripts
- systemd-settings-disable-kill-user-processes
2021-06-28 21:40:42 +03:00
rename :
regex : '(.*)\.qcow2c$'
to : '\1.qcow2'
branches :
Sisyphus :
arches :
aarch64 :
2022-11-11 05:08:26 +03:00
repository_url : http://ftp.altlinux.org/pub/distributions/ALTLinux/{branch}
2021-06-28 21:40:42 +03:00
p10 :
arches :
aarch64 :
branding : alt-starterkit
2024-09-02 17:37:59 +03:00
p11 :
arches :
aarch64 :
branding : alt-starterkit
2021-06-28 21:40:42 +03:00
scripts :
2024-08-28 17:18:38 +03:00
machine_id :
2022-06-02 18:59:05 +03:00
contents : |
2024-08-28 17:18:38 +03:00
#!/bin/sh -exu
2022-06-02 18:59:05 +03:00
2024-08-28 17:18:38 +03:00
etc_machine_id=/etc/machine-id
dbus_machine_id=/var/lib/dbus/machine-id
rm -f "$etc_machine_id" "$dbus_machine_id"
touch "$etc_machine_id"
2022-06-02 18:59:05 +03:00
global : no
2024-08-28 17:18:38 +03:00
number : 90
2021-06-28 21:40:42 +03:00
securetty :
contents : |
#!/bin/sh
echo pts/0 >> /etc/securetty
echo pts/1 >> /etc/securetty
global : no
number : 1
apt_sources :
contents : |
#!/bin/sh
repo_source=/etc/apt/sources.list.d/altsp.list
[ -s "$repo_source" ] || exit 0
sed -i -E 's/^\s*#(rpm.*http)/\1/' "$repo_source"
global : no
number : 80
...