cloud-build/configs/cb-ve-other.yaml

80 lines
1.3 KiB
YAML
Raw Normal View History

2021-06-28 21:40:42 +03:00
---
remote: 'cloud@172.16.0.2:/home/cloud/images/{branch}/{arch}'
2022-01-27 21:43:16 +03:00
repository_url: copy:///space/ALT/{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
rootfs-systemd-etcnet:
target: ve/systemd-etcnet
kinds:
- tar.xz
tests:
- method: lxd
scripts:
- securetty
rootfs-sysvinit:
target: ve/sysvinit-etcnet
kinds:
- tar.xz
tests:
- method: lxd
scripts:
- securetty
exclude_branches:
- c8
branches:
Sisyphus:
arches:
ppc64le:
armh:
p10:
arches:
ppc64le:
armh:
branding: alt-starterkit
p9:
arches:
ppc64le:
armh:
branding: alt-starterkit
scripts:
securetty:
contents: |
#!/bin/sh
echo pts/0 >> /etc/securetty
echo pts/1 >> /etc/securetty
echo console >> /etc/securetty
2021-06-28 21:40:42 +03:00
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
...