13 Commits

Author SHA1 Message Date
Lokesh Mandvekar d6deedf55a TMT: fix plan ref 2026-03-04 17:07:07 +05:30
Packit 9602f50c3a Update to 2.2.1 upstream release
Upstream tag: v2.2.1
Upstream commit: c8cc2c4d

Commit authored by Packit automation (https://packit.dev/)
2026-02-12 17:14:52 +00:00
Fedora Release Engineering 0ce79b7c4b Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-16 09:18:17 +00:00
Fedora Release Engineering 59e7441419 Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-16 05:19:29 +00:00
Packit 5514f6c2fb Update to 2.2.0 upstream release
Upstream tag: v2.2.0
Upstream commit: ff908cce

Commit authored by Packit automation (https://packit.dev/)
2026-01-12 11:58:23 +00:00
Fedora Release Engineering 35f6fc07c7 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-23 18:37:12 +00:00
Packit 42fcf1cb2d Update to 2.1.13 upstream release
Upstream tag: v2.1.13
Upstream commit: 82de8875

Commit authored by Packit automation (https://packit.dev/)
2025-03-03 11:18:30 +00:00
Lokesh Mandvekar 12b2d2b455 TMT: initial enablement
Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
2025-03-03 15:58:49 +05:30
Fedora Release Engineering 0b42637fa3 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-16 14:25:02 +00:00
Lokesh Mandvekar 47c1524a57 do not install crio stuff 2024-09-06 19:27:41 +05:30
Fedora Release Engineering 0a5580710a Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-17 19:54:11 +00:00
Packit 41788b03e8 Update to 2.1.12 upstream release
Upstream tag: v2.1.12
Upstream commit: e8896631

Commit authored by Packit automation (https://packit.dev/)
2024-05-17 06:40:44 +00:00
Lokesh Mandvekar 9d499cd825 bump to v2.1.10
Signed-off-by: Lokesh Mandvekar <lsm5@redhat.com>
2024-01-26 15:39:53 +05:30
11 changed files with 160 additions and 64 deletions
+1
View File
@@ -0,0 +1 @@
1
+5
View File
@@ -117,3 +117,8 @@
/v2.1.6.tar.gz /v2.1.6.tar.gz
/v2.1.7.tar.gz /v2.1.7.tar.gz
/v2.1.8.tar.gz /v2.1.8.tar.gz
/v2.1.10.tar.gz
/v2.1.12.tar.gz
/v2.1.13.tar.gz
/v2.2.0.tar.gz
/v2.2.1.tar.gz
+89
View File
@@ -0,0 +1,89 @@
---
# See the documentation for more information:
# https://packit.dev/docs/configuration/
downstream_package_name: conmon
upstream_tag_template: v{version}
packages:
conmon-fedora:
pkg_tool: fedpkg
specfile_path: rpm/conmon.spec
conmon-centos:
pkg_tool: centpkg
specfile_path: rpm/conmon.spec
conmon-rhel:
specfile_path: rpm/conmon.spec
jobs:
- job: copr_build
trigger: pull_request
packages: [conmon-fedora]
notifications: &copr_build_failure_notification
failure_comment:
message: "Ephemeral COPR build failed. @containers/packit-build please check."
enable_net: true
targets:
- fedora-all-aarch64
- fedora-all-x86_64
- fedora-eln-aarch64
- fedora-eln-x86_64
- job: copr_build
trigger: pull_request
packages: [conmon-centos]
notifications: *copr_build_failure_notification
enable_net: true
targets:
- centos-stream-10-aarch64
- centos-stream-10-x86_64
- centos-stream-9-aarch64
- centos-stream-9-x86_64
- job: copr_build
trigger: pull_request
packages: [conmon-rhel]
notifications: *copr_build_failure_notification
enable_net: true
targets:
- epel-9-aarch64
- epel-9-x86_64
# Run on commit to main branch
- job: copr_build
trigger: commit
notifications:
failure_comment:
message: "podman-next COPR build failed. @containers/packit-build please check."
branch: main
owner: rhcontainerbot
project: podman-next
enable_net: true
# Downstream sync for Fedora
- job: propose_downstream
trigger: release
packages: [conmon-fedora]
update_release: false
dist_git_branches:
- fedora-all
# Downstream sync for CentOS Stream
- job: propose_downstream
trigger: release
packages: [conmon-centos]
update_release: false
dist_git_branches:
- c10s
- job: koji_build
trigger: commit
packages: [conmon-fedora]
dist_git_branches:
- fedora-all
- job: bodhi_update
trigger: commit
packages: [conmon-fedora]
dist_git_branches:
- fedora-branched # rawhide updates are created automatically
+3
View File
@@ -0,0 +1,3 @@
This repository is maintained by packit.
https://packit.dev/
The file was generated using packit 1.14.0.post1.dev10+g291d7454f.
+10 -13
View File
@@ -7,33 +7,33 @@
%global debug_package %{nil} %global debug_package %{nil}
%endif %endif
%if 0%{?rhel} %if %{defined rhel}
%bcond_with docs %bcond_with docs
%else %else
%bcond_without docs %bcond_without docs
%endif %endif
%global built_tag v2.1.8
%global built_tag_strip %(b=%{built_tag}; echo ${b:1})
%global gen_version %(b=%{built_tag_strip}; echo ${b/-/"~"})
Name: conmon Name: conmon
%if %{defined rhel}
Epoch: 3
%else
Epoch: 2 Epoch: 2
Version: %{gen_version} %endif
Version: 2.2.1
License: Apache-2.0 License: Apache-2.0
Release: %autorelease Release: %autorelease
Summary: OCI container runtime monitor Summary: OCI container runtime monitor
URL: https://github.com/containers/%{name} URL: https://github.com/containers/%{name}
# Tarball fetched from upstream # Tarball fetched from upstream
Source0: %{url}/archive/%{built_tag}.tar.gz Source0: %{url}/archive/v%{version}.tar.gz
%if %{with docs} %if %{with docs}
ExclusiveArch: %{golang_arches_future}
BuildRequires: go-md2man BuildRequires: go-md2man
%endif %endif
BuildRequires: gcc BuildRequires: gcc
BuildRequires: git-core BuildRequires: git-core
BuildRequires: glib2-devel BuildRequires: glib2-devel
BuildRequires: libseccomp-devel BuildRequires: libseccomp-devel
BuildRequires: pkgconfig
BuildRequires: systemd-devel BuildRequires: systemd-devel
BuildRequires: systemd-libs BuildRequires: systemd-libs
BuildRequires: make BuildRequires: make
@@ -45,9 +45,8 @@ Requires: libseccomp
%{summary}. %{summary}.
%prep %prep
%autosetup -Sgit %{name}-%{built_tag_strip} %autosetup -Sgit %{name}-%{version}
sed -i 's/install.bin: bin\/conmon/install.bin:/' Makefile sed -i 's/install.bin: bin\/conmon/install.bin:/' Makefile
sed -i 's/install.crio: bin\/conmon/install.crio:/' Makefile
%build %build
%{__make} DEBUGFLAG="-g" bin/conmon %{__make} DEBUGFLAG="-g" bin/conmon
@@ -57,7 +56,7 @@ sed -i 's/install.crio: bin\/conmon/install.crio:/' Makefile
%endif %endif
%install %install
%{__make} PREFIX=%{buildroot}%{_prefix} install.bin install.crio %{__make} PREFIX=%{buildroot}%{_prefix} install.bin
%if %{with docs} %if %{with docs}
%{__make} PREFIX=%{buildroot}%{_prefix} -C docs install %{__make} PREFIX=%{buildroot}%{_prefix} -C docs install
@@ -70,8 +69,6 @@ sed -i 's/install.crio: bin\/conmon/install.crio:/' Makefile
%license LICENSE %license LICENSE
%doc README.md %doc README.md
%{_bindir}/%{name} %{_bindir}/%{name}
%{_libexecdir}/crio/%{name}
%dir %{_libexecdir}/crio
%if %{with docs} %if %{with docs}
%{_mandir}/man8/%{name}.8.gz %{_mandir}/man8/%{name}.8.gz
+7 -5
View File
@@ -1,14 +1,16 @@
--- !Policy --- !Policy
product_versions: product_versions:
- fedora-* - fedora-*
decision_context: bodhi_update_push_stable decision_contexts:
- bodhi_update_push_stable
- bodhi_update_push_testing
subject_type: koji_build subject_type: koji_build
rules: rules:
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
--- !Policy --- !Policy
product_versions: product_versions:
- fedora-* - rhel-*
decision_context: bodhi_update_push_testing decision_context: osci_compose_gate
subject_type: koji_build
rules: rules:
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
+44
View File
@@ -0,0 +1,44 @@
prepare:
- when: distro == centos-stream or distro == rhel
how: shell
script: |
dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-$(rpm --eval '%{?rhel}').noarch.rpm
dnf -y config-manager --set-enabled epel
order: 10
- when: initiator == packit
how: shell
script: |
COPR_REPO_FILE="/etc/yum.repos.d/*podman-next*.repo"
if compgen -G $COPR_REPO_FILE > /dev/null; then
sed -i -n '/^priority=/!p;$apriority=1' $COPR_REPO_FILE
fi
dnf -y upgrade --allowerasing
order: 20
provision:
how: artemis
hardware:
memory: ">= 16 GB"
cpu:
cores: ">= 4"
threads: ">=8"
disk:
- size: ">= 512 GB"
discover:
how: fmf
url: https://github.com/containers/podman
ref: "v5.8.0"
execute:
how: tmt
/system/local-root:
summary: Run podman system rootful tests
discover+:
filter: 'tag:local & tag:root'
/system/local-rootless:
summary: Run podman system rootless tests
discover+:
filter: 'tag:local & tag:rootless'
+1 -1
View File
@@ -1 +1 @@
SHA512 (v2.1.8.tar.gz) = a277de8f8adf001c3e3ef6ef19d4bade36d48c5395a624ee99cb22708ea26a9954df76362006a1331efc06265cb790883b43e84f0006f80c1725a7470ff244c3 SHA512 (v2.2.1.tar.gz) = 52513fc25b0db0b7c9c99aa63f6be4c495add350b9269fad67136f728d3399dbb54c5fa526d52c158c67956ded8980f1cc3624fc531a152b16c09caa3399be3b
-17
View File
@@ -1,17 +0,0 @@
#!/bin/bash -e
#
# Simple podman tests
#
# Log program and kernel versions
echo "Important package versions:"
(
uname -r
rpm -qa | egrep 'podman|conmon|crun|runc|iptable|slirp|systemd|container-selinux' | sort
) | sed -e 's/^/ /'
# Log environment; or at least the useful bits
echo "Environment:"
env | grep -v LS_COLORS= | sort | sed -e 's/^/ /'
bats /usr/share/podman/test/system
-27
View File
@@ -1,27 +0,0 @@
---
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
- container
required_packages:
- bats
- conmon
- podman
- podman-tests
tests:
- root-test:
dir: ./
run: ./test_podman.sh
timeout: 45m
environment:
QUADLET: /usr/libexec/podman/quadlet
- rootless-test:
# running the test with su doesn't create the directory for fedora user on /run/user/
# so create it manually
dir: ./
run: loginctl enable-linger fedora; su -c ${PWD}/test_podman.sh - fedora
timeout: 45m
environment:
QUADLET: /usr/libexec/podman/quadlet
-1
View File
@@ -1 +0,0 @@
- import_playbook: test_podman.yml