Skip to content

Commit

Permalink
ci: build & test util-linux on Fedora Rawhide via Packit
Browse files Browse the repository at this point in the history
Let's run at least the unit-tests on Fedora Rawhide via Packit, as it
supports a couple of alternative architectures (aarch64, ppc64le, s390x)
as well as i*86, which were source of issues in the past.
  • Loading branch information
mrc0mmand committed Dec 12, 2022
1 parent 5099e00 commit 65195c8
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .packit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
# vi:ts=2 sw=2 et:
#
# Docs: https://packit.dev/docs/

specfile_path: .packit_rpm/util-linux.spec
files_to_sync:
- .packit.yaml
- src: .packit_rpm/util-linux.spec
dest: util-linux.spec
upstream_package_name: util-linux
downstream_package_name: util-linux
# `git describe` returns in util-linux's case 'v2.37.2-xxx' which breaks RPM version
# # detection (that expects 2.37.2-xxx'). Let's tweak the version string accordingly
upstream_tag_template: "v{version}"
srpm_build_deps: []

actions:
post-upstream-clone:
# Use a spec file from Fedora Rawhide
- "git clone https://src.fedoraproject.org/rpms/util-linux.git .packit_rpm --depth=1"
# Drop the "sources" file so rebase-helper doesn't think we're a dist-git
- "rm -fv .packit_rpm/sources"
# Drop all patches, since they're already included in the tarball
- "sed -ri '/^Patch[0-9]+:/d' .packit_rpm/util-linux.spec"
# Install additional dependencies we need for the build/tests
- "sed -i '/^### Dependencies/aBuildRequires: autoconf automake bc bison iproute libtool procps-ng socat' .packit_rpm/util-linux.spec"
# We need to call autogen, since we use a custom tarball
- "sed -i '/^unset LINGUAS/a./autogen.sh' .packit_rpm/util-linux.spec"
# Enable tests after build
- "sed -i '/^### Macros/a%define _with_check 1' .packit_rpm/util-linux.spec"
# Ignore unpackaged files
- "sed -i '1 i%define _unpackaged_files_terminate_build 0' .packit_rpm/util-linux.spec"
create-archive:
# We need to override the default create-archive action, since we need to tweak
# the resulting tarball and add a .tarball-version file to it, otherwise
# util-linux fails to detect its version during build
- "bash -c 'echo $PACKIT_PROJECT_VERSION >.tarball-version'"
- "bash -c 'git archive --prefix ${PACKIT_PROJECT_NAME_VERSION}/ --add-file .tarball-version --output .packit_rpm/${PACKIT_PROJECT_NAME_VERSION}.tar.gz HEAD'"
- "bash -c 'echo .packit_rpm/${PACKIT_PROJECT_NAME_VERSION}.tar.gz'"

# Available targets can be listed via `copr-cli list-chroots`
jobs:
# Build test
- job: copr_build
trigger: pull_request
targets:
- fedora-rawhide-aarch64
- fedora-rawhide-i386
- fedora-rawhide-ppc64le
- fedora-rawhide-s390x
- fedora-rawhide-x86_64

0 comments on commit 65195c8

Please sign in to comment.