Skip to content

Commit af47dba

Browse files
committed
debug rawhide
Signed-off-by: Lokesh Mandvekar <[email protected]>
1 parent 706fe08 commit af47dba

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.packit.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ jobs:
5656
message: "[NON-BLOCKING] Packit jobs failed. @containers/packit-build please check. Everyone else, feel free to ignore."
5757
enable_net: true
5858
targets:
59-
- fedora-all-x86_64
60-
- fedora-all-aarch64
59+
- fedora-rawhide-x86_64
60+
#- fedora-all-aarch64
6161
# Re-enable these scans if OpenScanHub starts scanning go packages
6262
# https://packit.dev/posts/openscanhub-prototype
6363
osh_diff_scan_after_copr_build: false
@@ -107,8 +107,8 @@ jobs:
107107
notifications: *packit_generic_failure_notification
108108
targets:
109109
- fedora-rawhide
110-
- fedora-42
111-
- fedora-41
110+
#- fedora-42
111+
#- fedora-41
112112
tmt_plan: "/plans/system/*"
113113
tf_extra_params:
114114
environments:
@@ -118,7 +118,7 @@ jobs:
118118

119119
- job: tests
120120
identifier: cockpit-revdeps
121-
trigger: pull_request
121+
trigger: ignore
122122
packages: [podman-fedora]
123123
notifications:
124124
failure_comment:

test/system/helpers.bash

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,9 +741,12 @@ function is_rhel_or_centos() {
741741
}
742742

743743
function is_rawhide() {
744+
echo "##### RUNNING is_rawhide #######"
744745
if find /etc/redhat-release && grep -Eiq "Rawhide" /etc/redhat-release; then
746+
echo "##### ENV IS RAWHIDE!!!! ##### "
745747
return 0
746748
fi
749+
echo "###### NOT RAWHIDE ######"
747750
return 1
748751
}
749752

@@ -956,6 +959,7 @@ function skip_if_rhel_or_centos {
956959
}
957960

958961
function skip_if_rawhide {
962+
echo "##### Running skip_if_rawhide...####"
959963
if is_rawhide; then
960964
skip "${msg:-skip if Fedora Rawhide}"
961965
fi

test/tmt/system.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rpm -q \
2525
systemd
2626

2727
export system_service_cmd="/usr/bin/podman system service --timeout=0 &"
28-
export test_cmd="whoami && cd /usr/share/podman/test/system && PODMAN_TESTING=/usr/bin/podman-testing bats ."
28+
export test_cmd="whoami && cd /usr/share/podman/test/system && PODMAN_TESTING=/usr/bin/podman-testing bats 520-checkpoint.bats"
2929

3030
if [[ -z $1 ]]; then
3131
if [[ $PODMAN == "/usr/bin/podman-remote" ]]; then

0 commit comments

Comments
 (0)