debian-forge/samples/build-from-yum.json
Martin Sehnoutka c082222cf4 run timezone and firewall tests in CI
Both tests work in CI just fine so we should run them every time. I
introduce them as a separate jobs because jobs run in parallel so it
takes less time even though it does not share object store.
2019-09-10 22:40:48 +02:00

23 lines
551 B
JSON

{
"name": "build-from-yum",
"stages": [
{
"name": "org.osbuild.yum",
"options": {
"releasever": "27",
"repos": {
"fedora": {
"name": "Fedora",
"baseurl": "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/$releasever/Everything/$basearch/os/",
"gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch"
}
},
"packages": [
"dnf",
"systemd",
"tar"
]
}
}
]
}