Use rockylinux, but allow overriding to i.e. centos.
This commit is contained in:
parent
f6b9577918
commit
8ca240a86d
|
|
@ -98,9 +98,15 @@ exceptions:
|
||||||
|
|
||||||
This optional file describes how Travis, Tox and Molecule should behave.
|
This optional file describes how Travis, Tox and Molecule should behave.
|
||||||
|
|
||||||
|
|parameter |type |default|description|
|
||||||
|
|----------------|---------------|-------|-----------|
|
||||||
|
|tox_version |list of strings|not set|What versions should Tox test? (Default: all.)|
|
||||||
|
|enterprise_linux|string |not set|If `EL` is used in `meta/main.yml` where should tests happen on? (Default: `rockylinux`.)
|
||||||
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
---
|
---
|
||||||
travis_parallel: no
|
|
||||||
tox_versions:
|
tox_versions:
|
||||||
- current
|
- current
|
||||||
|
enterprise_linx: centos
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ platform_image_mapping:
|
||||||
Amazon: amazonlinux
|
Amazon: amazonlinux
|
||||||
Archlinux: archlinux
|
Archlinux: archlinux
|
||||||
Debian: debian
|
Debian: debian
|
||||||
EL: centos
|
EL: "{{ enterprise_linux | default('rockylinux') }}"
|
||||||
Fedora: fedora
|
Fedora: fedora
|
||||||
OpenSUSE: opensuse
|
OpenSUSE: opensuse
|
||||||
Ubuntu: ubuntu
|
Ubuntu: ubuntu
|
||||||
|
|
@ -57,7 +57,6 @@ distribution_version_mapping:
|
||||||
- bullseye
|
- bullseye
|
||||||
EL:
|
EL:
|
||||||
all:
|
all:
|
||||||
- 7
|
|
||||||
- latest
|
- latest
|
||||||
7:
|
7:
|
||||||
- 7
|
- 7
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue