glibc/plans/ci.fmf
Sergey Kolosov e2834b0028 CI Tests: remove conflicting glibc32 to fix prepare stage
RPM-Changelog: -
RPM-Skip-Release: yes
2026-03-02 19:10:44 +01:00

31 lines
702 B
Plaintext

summary: CI Gating Plan
discover:
how: fmf
directory: tests
prepare:
- name: Workaround for glibc32 conflict
how: shell
order: 10
script: |
if [[ "$(uname -m)" == "x86_64" ]] && rpm -q glibc32 &>/dev/null; then
echo "Remove glibc32 to avoid conflict with glibc.i686"
dnf remove -y glibc32
fi
adjust:
- when: distro == rhel
prepare+:
- name: Enable RHEL CRB
how: shell
order: 20
script: dnf config-manager --set-enabled *-CRB
- when: distro == centos
prepare+:
- name: Enable CentOS CRB
how: shell
order: 20
script: dnf config-manager --set-enabled crb
execute:
how: tmt