Skip to content

Commit ae39c87

Browse files
committed
ci: fix markdown formatting for contributing.md to pass markdownlint
fix markdown formatting for contributing.md to pass markdownlint Signed-off-by: Rich Megginson <[email protected]>
1 parent e28ba37 commit ae39c87

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

plans/test_playbooks_parallel.fmf

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ prepare:
2929
if grep -q 'CentOS Linux release 7.9' /etc/redhat-release; then
3030
sed -i '/^mirror/d;s/#\?\(baseurl=http:\/\/\)mirror/\1vault/' /etc/yum.repos.d/*.repo
3131
fi
32+
# Replace with feature: epel: enabled once https://github.com/teemtee/tmt/pull/3128 is merged
33+
- name: Enable epel to install beakerlib
34+
script: |
35+
# CS 10 and Fedora doesn't require epel
36+
if grep -q -e 'CentOS Stream release 10' -e 'Fedora release' /etc/redhat-release; then
37+
exit 0
38+
fi
39+
yum install epel-release yum-utils -y
40+
yum-config-manager --enable epel epel-debuginfo epel-source
3241
discover:
3342
- name: Prepare managed node
3443
how: fmf
@@ -51,11 +60,5 @@ discover:
5160
# filter: tag:reserve_system
5261
# url: https://github.com/linux-system-roles/tft-tests
5362
# ref: main
54-
adjust:
55-
- when: distro == rhel-9 or distro == centos-stream-9 or distro == rhel-10 or distro == centos-stream-10
56-
prepare+:
57-
- how: feature
58-
epel: enabled
59-
order: 10
6063
execute:
61-
how: tmt
64+
how: tmt

0 commit comments

Comments
 (0)