Skip to content

Commit e4e6837

Browse files
committed
Add testing and use correct repository for CentOS/RHEL 8
1 parent 4ad659a commit e4e6837

File tree

32 files changed

+413
-122
lines changed

32 files changed

+413
-122
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,20 @@ services:
55
- docker
66
env:
77
- scenario: default
8+
- scenario: default_alpine
9+
- scenario: default_centos
810
- scenario: module
11+
- scenario: module_alpine
12+
- scenario: module_centos
913
- scenario: stable_push
14+
- scenario: stable_push_alpine
15+
- scenario: stable_push_centos
1016
- scenario: template
17+
- scenario: template_alpine
18+
- scenario: template_centos
1119
- scenario: unit
20+
- scenario: unit_alpine
21+
- scenario: unit_centos
1222
before_install:
1323
- sudo apt-get -qq update
1424
install:

molecule/common/Dockerfile.j2

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ RUN \
1919
apt-get update \
2020
&& apt-get install -y python sudo bash ca-certificates iproute2 curl \
2121
&& apt-get clean; \
22+
elif [ $(command -v dnf) ] && [ $(rpm -E %{rhel}) -eq 8 ]; then \
23+
dnf makecache \
24+
&& dnf --assumeyes install python3 python3-devel python3-dnf python3-pip bash iproute \
25+
&& dnf clean all; \
2226
elif [ $(command -v dnf) ]; then \
2327
dnf makecache \
2428
&& dnf --assumeyes install python sudo python-devel python*-dnf bash iproute \
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)