public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Packit <hello@packit.dev>
To: git-commits@fedoraproject.org
Subject: [rpms/crun] rawhide: Update to 1.29 upstream release
Date: Fri, 07 Aug 2026 14:34:34 GMT [thread overview]
Message-ID: <178611327484.1.2361336623869556730.rpms-crun-7b78ba59d7af@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/crun
Branch : rawhide
Commit : 7b78ba59d7af57cdc89edf19dbf7fe004aa85c39
Author : Packit <hello@packit.dev>
Date : 2026-08-07T14:26:47+00:00
Stats : +56/-14 in 6 file(s)
URL : https://src.fedoraproject.org/rpms/crun/c/7b78ba59d7af57cdc89edf19dbf7fe004aa85c39?branch=rawhide
Log:
Update to 1.29 upstream release
Upstream tag: 1.29
Upstream commit: d66af6a0
Commit authored by Packit automation (https://packit.dev/)
---
diff --git a/.gitignore b/.gitignore
index 4fdf816..0c6393e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -105,3 +105,4 @@ crun-0.1.1.tar.gz
/crun-1.27.tar.zst
/crun-1.27.1.tar.zst
/crun-1.28.tar.zst
+/crun-1.29.tar.zst
diff --git a/README.packit b/README.packit
index ead62b8..ef5aa9d 100644
--- a/README.packit
+++ b/README.packit
@@ -1,3 +1,3 @@
This repository is maintained by packit.
https://packit.dev/
-The file was generated using packit 1.16.0.post1.dev6+g4581d2cd8.
+The file was generated using packit 1.16.2.post1.dev6+g30936cda7.
diff --git a/crun.spec b/crun.spec
index d1fc2d2..00f040f 100644
--- a/crun.spec
+++ b/crun.spec
@@ -33,7 +33,7 @@ Epoch: 102
# If that's what you're reading, Version must be 0, and will be updated by Packit for
# copr and koji builds.
# If you're reading this on dist-git, the version is automatically filled in by Packit.
-Version: 1.28
+Version: 1.29
Release: %autorelease
URL: https://github.com/containers/%{name}
Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.zst
diff --git a/sources b/sources
index 87ff8bd..05b8344 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (crun-1.28.tar.zst) = 9a2ee5c53169e166f415bcd7713b03e0ce8ec007a6ec6409aa72a1339881efa0155338c1147dcf39fbce100888f3217cb6bab51f45d5a2656f7eef34dc4d1eef
+SHA512 (crun-1.29.tar.zst) = 535eb3a84dd3400ace359900fbd9d3404f353133979f6dd132ce2533cde277da318797aee676a8036639b637f92b54599081db4d6830b33f8a4343d386db28ae
diff --git a/tests/tmt/podman/system-test.fmf b/tests/tmt/podman/system-test.fmf
index 8df55c2..12954fa 100644
--- a/tests/tmt/podman/system-test.fmf
+++ b/tests/tmt/podman/system-test.fmf
@@ -1,7 +1,22 @@
+summary: Run Podman system tests with crun
+tag: [ podman ]
+duration: 10m
+
+environment:
+ ROOTLESS_USER: testuser
+
adjust:
- duration: 10m
- when: arch == aarch64
+ - enabled: false
+ when: distro == centos-stream or distro == rhel
+ - duration: 15m
+ when: arch == aarch64
-summary: Run crun specific Podman tests
-test: bash ./system-test.sh
-tag: [ podman ]
+/root:
+ tag+: [ root ]
+ summary: Run Podman system tests as root
+ test: bash ./system-test.sh
+
+/rootless:
+ tag+: [ rootless ]
+ summary: Run Podman system tests as rootless
+ test: bash ./system-test.sh rootless
diff --git a/tests/tmt/podman/system-test.sh b/tests/tmt/podman/system-test.sh
index 974f829..bdb304d 100644
--- a/tests/tmt/podman/system-test.sh
+++ b/tests/tmt/podman/system-test.sh
@@ -2,7 +2,7 @@
set -exo pipefail
-if [[ "$(id -u)" -ne 0 ]];then
+if [[ "$(id -u)" -ne 0 ]]; then
echo "Please run this script as superuser"
exit 1
fi
@@ -10,8 +10,34 @@ fi
cat /etc/redhat-release
rpm -q conmon containers-common crun podman podman-tests
-# Run crun specific podman tests
-bats -t /usr/share/podman/test/system/030-run.bats
-bats -t /usr/share/podman/test/system/075-exec.bats
-bats -t /usr/share/podman/test/system/280-update.bats
-bats -t /usr/share/podman/test/system/520-checkpoint.bats
+ROOTLESS_USER=${ROOTLESS_USER:-testuser}
+
+TESTS=(
+/usr/share/podman/test/system/030-run.bats
+/usr/share/podman/test/system/060-mount.bats
+/usr/share/podman/test/system/075-exec.bats
+/usr/share/podman/test/system/170-run-userns.bats
+/usr/share/podman/test/system/200-pod.bats
+/usr/share/podman/test/system/280-update.bats
+/usr/share/podman/test/system/400-unprivileged-access.bats
+/usr/share/podman/test/system/420-cgroups.bats
+/usr/share/podman/test/system/520-checkpoint.bats
+)
+
+# Filter out test files that do not exist in the installed version.
+existing_tests=()
+for t in "${TESTS[@]}"; do
+ if [[ -f $t ]]; then
+ existing_tests+=("$t")
+ fi
+done
+
+if [[ -z $1 ]]; then
+ bats -t "${existing_tests[@]}"
+elif [[ $1 == "rootless" ]]; then
+ if ! id "$ROOTLESS_USER" &>/dev/null; then
+ useradd "$ROOTLESS_USER"
+ fi
+ loginctl enable-linger "$ROOTLESS_USER"
+ su - "$ROOTLESS_USER" -c "bats -t ${existing_tests[*]}"
+fi
reply other threads:[~2026-08-07 14:34 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178611327484.1.2361336623869556730.rpms-crun-7b78ba59d7af@fedoraproject.org \
--to=hello@packit.dev \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox