This repository was archived by the owner on May 31, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +47
-11
lines changed
Expand file tree Collapse file tree 6 files changed +47
-11
lines changed Original file line number Diff line number Diff line change 22
33set -euo pipefail
44
5- if [ ! -d " ./molecule/latest" ]; then
6- tox
5+ if [ ! -d " ./molecule/latest" ]; then
6+ tox -- molecule test --all
77 exit 0
88fi
99
1010if [ " $TRAVIS_PULL_REQUEST " == " false" ]; then
11- tox -- molecule test --all --destroy never
11+ tox -- molecule test --all --destroy always
1212else
1313 tox -- molecule test -s default --destroy always
1414 if [ -d " ./molecule/alternative" ]; then
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ galaxy_info:
1717 - name : EL
1818 versions :
1919 - 7
20+ - 8
2021 - name : Fedora
2122 versions :
2223 - 30
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ platforms:
2424 privileged : true
2525 volumes :
2626 - /sys/fs/cgroup:/sys/fs/cgroup:ro
27- - name : jessie
28- image : paulfantom/debian-molecule:8
27+ - name : buster
28+ image : paulfantom/debian-molecule:10
2929 docker_host : " ${DOCKER_HOST:-unix://var/run/docker.sock}"
3030 privileged : true
3131 volumes :
@@ -36,21 +36,35 @@ platforms:
3636 privileged : true
3737 volumes :
3838 - /sys/fs/cgroup:/sys/fs/cgroup:ro
39+ - name : centos8
40+ image : paulfantom/centos-molecule:8
41+ docker_host : " ${DOCKER_HOST:-unix://var/run/docker.sock}"
42+ privileged : true
43+ volumes :
44+ - /sys/fs/cgroup:/sys/fs/cgroup:ro
45+ groups :
46+ - python3
3947 - name : fedora
40- image : paulfantom/fedora-molecule:27
48+ image : paulfantom/fedora-molecule:30
4149 docker_host : " ${DOCKER_HOST:-unix://var/run/docker.sock}"
4250 privileged : true
4351 volumes :
4452 - /sys/fs/cgroup:/sys/fs/cgroup:ro
53+ groups :
54+ - python3
4555provisioner :
4656 name : ansible
4757 lint :
4858 name : ansible-lint
4959 playbooks :
5060 create : ../default/create.yml
51- prepare : ../default/ prepare.yml
61+ prepare : prepare.yml
5262 converge : playbook.yml
5363 destroy : ../default/destroy.yml
64+ inventory :
65+ group_vars :
66+ python3 :
67+ ansible_python_interpreter : /usr/bin/python3
5468scenario :
5569 name : alternative
5670verifier :
Original file line number Diff line number Diff line change 1+ ---
2+ - name : Prepare
3+ hosts : all
4+ gather_facts : false
5+ tasks : []
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ platforms:
2424 privileged : true
2525 volumes :
2626 - /sys/fs/cgroup:/sys/fs/cgroup:ro
27- - name : jessie
28- image : paulfantom/debian-molecule:8
27+ - name : buster
28+ image : paulfantom/debian-molecule:10
2929 docker_host : " ${DOCKER_HOST:-unix://var/run/docker.sock}"
3030 privileged : true
3131 volumes :
@@ -36,12 +36,22 @@ platforms:
3636 privileged : true
3737 volumes :
3838 - /sys/fs/cgroup:/sys/fs/cgroup:ro
39+ - name : centos8
40+ image : paulfantom/centos-molecule:8
41+ docker_host : " ${DOCKER_HOST:-unix://var/run/docker.sock}"
42+ privileged : true
43+ volumes :
44+ - /sys/fs/cgroup:/sys/fs/cgroup:ro
45+ groups :
46+ - python3
3947 - name : fedora
40- image : paulfantom/fedora-molecule:27
48+ image : paulfantom/fedora-molecule:30
4149 docker_host : " ${DOCKER_HOST:-unix://var/run/docker.sock}"
4250 privileged : true
4351 volumes :
4452 - /sys/fs/cgroup:/sys/fs/cgroup:ro
53+ groups :
54+ - python3
4555provisioner :
4656 name : ansible
4757 lint :
@@ -51,6 +61,10 @@ provisioner:
5161 prepare : prepare.yml
5262 converge : playbook.yml
5363 destroy : destroy.yml
64+ inventory :
65+ group_vars :
66+ python3 :
67+ ansible_python_interpreter : /usr/bin/python3
5468scenario :
5569 name : default
5670verifier :
Original file line number Diff line number Diff line change 11---
22grafana_package : " grafana{{ (grafana_version != 'latest') | ternary('-' ~ grafana_version, '') }}"
3- grafana_dependencies : []
3+ # https://unix.stackexchange.com/questions/534463/cant-enable-grafana-on-boot-in-fedora-because-systemd-sysv-install-missing
4+ grafana_dependencies :
5+ - chkconfig
You can’t perform that action at this time.
0 commit comments