cockpit/packit.yaml
Jelle van der Waa fe9d8a0acc Update to 353.1 upstream release
Related: RHEL-112867
2025-12-16 11:52:27 +01:00

122 lines
3.7 KiB
YAML

upstream_project_url: https://github.com/cockpit-project/cockpit
specfile_path: cockpit.spec
actions:
# create-archive does not work with multiple sources, so do the spec mangling ourselves
post-upstream-clone:
# we already build a spec file with correct Version, so extract it
- |
bash -exc '
mapfile -t TARBALLS < <(tools/make-dist)
# Extract spec file from main tarball (first in array)
tar -xJf "${TARBALLS[0]}" --wildcards "*/tools/cockpit.spec" --strip-components=2
# Move all tarballs to current directory for packit
mv "${TARBALLS[@]}" .
'
fix-spec-file:
# packit needs local file names, not URLs
- sed -i 's|^\(Source[0-9]*:\s*\).*\/|\1|' cockpit.spec
srpm_build_deps:
- automake
- gcc
- gettext
- glib2-devel
- jq
- make
- nodejs
- systemd-devel
# use the nicely formatted release NEWS from our upstream release, instead of git shortlog
copy_upstream_release_description: true
jobs:
- job: tests
identifier: self
trigger: pull_request
targets: &test_targets
fedora-42: {}
fedora-43: {}
fedora-latest-aarch64: {}
fedora-rawhide: {}
centos-stream-9-x86_64:
distros: ["centos-stream-9", "CentOS-Stream-9-image-mode"]
centos-stream-9-aarch64: {}
centos-stream-10-x86_64:
distros: ["centos-stream-10", "CentOS-Stream-10-image-mode"]
# current Fedora runs reverse dependency testing against https://copr.fedorainfracloud.org/coprs/g/cockpit/main-builds/
- job: tests
identifier: revdeps
trigger: pull_request
targets:
- fedora-latest-stable
tf_extra_params:
environments:
- artifacts:
- type: repository-file
id: https://copr.fedorainfracloud.org/coprs/g/cockpit/main-builds/repo/fedora-$releasever/group_cockpit-main-builds-fedora-$releasever.repo
tmt:
context:
revdeps: "yes"
# run build/unit tests on test targets
- job: copr_build
trigger: pull_request
targets: *test_targets
# run extra build/unit tests on some interesting architectures
- job: copr_build
trigger: pull_request
targets:
# big-endian
- fedora-latest-stable-s390x
# for cross-project testing
- job: copr_build
trigger: commit
branch: "^main$"
owner: "@cockpit"
project: "main-builds"
preserve_project: True
- job: copr_build
trigger: release
owner: "@cockpit"
project: "cockpit-preview"
preserve_project: True
actions:
# same as the global one, but specifying actions: does not inherit
post-upstream-clone:
# build patched spec
- tools/node-modules make_package_lock_json
- cp tools/cockpit.spec .
# packit will compute and set the version by itself
- tools/fix-spec ./cockpit.spec 0
# HACK: tarball for releases (copr_build, koji, etc.), copying spec's Source0 and Source1; this
# really should be the default, see https://github.com/packit/packit-service/issues/1505
fix-spec-file:
- 'sh -exc "curl -L --fail -O https://github.com/cockpit-project/cockpit/releases/download/${PACKIT_PROJECT_VERSION}/${PACKIT_PROJECT_NAME_VERSION}.tar.xz"'
- 'sh -exc "curl -L --fail -O https://github.com/cockpit-project/cockpit/releases/download/${PACKIT_PROJECT_VERSION}/cockpit-node-${PACKIT_PROJECT_VERSION}.tar.xz"'
- job: propose_downstream
trigger: release
dist_git_branches:
- fedora-development
- fedora-42
- fedora-43
- job: koji_build
trigger: commit
dist_git_branches:
- fedora-development
- fedora-42
- fedora-43
- job: bodhi_update
trigger: commit
dist_git_branches:
# rawhide updates are created automatically
- fedora-42
- fedora-43