Skip to content

Commit ef2cf1d

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 446a32c commit ef2cf1d

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

contributing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ To run the tests locally in container, you can use the attached Containerfile
7474
podman build -t system-roles-ssh .dev-tools
7575
podman run -itv ./:/src:Z system-roles-ssh
7676
```
77+
7778
## Running CI Tests Locally
7879

7980
### Use tox-lsr with qemu

plans/test_playbooks_parallel.fmf

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ prepare:
3333
if grep -q 'CentOS Linux release 7.9' /etc/redhat-release; then
3434
sed -i '/^mirror/d;s/#\?\(baseurl=http:\/\/\)mirror/\1vault/' /etc/yum.repos.d/*.repo
3535
fi
36+
# Replace with feature: epel: enabled once https://github.com/teemtee/tmt/pull/3128 is merged
37+
- name: Enable epel to install beakerlib
38+
script: |
39+
# CS 10 and Fedora doesn't require epel
40+
if grep -q -e 'CentOS Stream release 10' -e 'Fedora release' /etc/redhat-release; then
41+
exit 0
42+
fi
43+
yum install epel-release yum-utils -y
44+
yum-config-manager --enable epel epel-debuginfo epel-source
3645
discover:
3746
- name: Prepare managed node
3847
how: fmf
@@ -55,11 +64,5 @@ discover:
5564
# filter: tag:reserve_system
5665
# url: https://github.com/linux-system-roles/tft-tests
5766
# ref: main
58-
adjust:
59-
- when: distro == rhel-9 or distro == centos-stream-9 or distro == rhel-10 or distro == centos-stream-10
60-
prepare+:
61-
- how: feature
62-
epel: enabled
63-
order: 10
6467
execute:
65-
how: tmt
68+
how: tmt

0 commit comments

Comments
 (0)