File tree 5 files changed +37
-34
lines changed
5 files changed +37
-34
lines changed Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ jobs:
44
44
fail-fast : false
45
45
matrix :
46
46
include :
47
- - distro : debian8
48
- - distro : debian9
49
47
- distro : debian10
50
- - distro : ubuntu1604
51
- ansible-version : ' >=2.10, <2.11'
52
- - distro : ubuntu1604
48
+ - distro : debian11
49
+ - distro : debian12
53
50
- distro : ubuntu1804
51
+ ansible-version : ' >=9, <10'
54
52
- distro : ubuntu2004
53
+ - distro : ubuntu2204
54
+ - distro : ubuntu2404
55
55
56
56
steps :
57
57
- name : Check out the codebase
65
65
python-version : ' 3.x'
66
66
67
67
- name : Install test dependencies
68
- run : pip install 'ansible${{ matrix.ansible-version }}' molecule-plugins[docker] docker
69
-
68
+ run : |
69
+ pip install 'ansible${{ matrix.ansible-version }}' molecule-plugins[docker] docker
70
70
- name : Run Molecule tests
71
71
run : |
72
72
molecule test
Original file line number Diff line number Diff line change 4
4
role = File . basename ( File . expand_path ( File . dirname ( __FILE__ ) ) )
5
5
6
6
boxes = [
7
- {
8
- :name => "ubuntu-1604" ,
9
- :box => "bento/ubuntu-16.04" ,
10
- :ip => '10.0.0.12' ,
11
- :cpu => "50" ,
12
- :ram => "256"
13
- } ,
14
7
{
15
8
:name => "ubuntu-1804" ,
16
9
:box => "bento/ubuntu-18.04" ,
@@ -23,21 +16,21 @@ boxes = [
23
16
:box => "bento/ubuntu-20.04" ,
24
17
:ip => '10.0.0.14' ,
25
18
:cpu => "50" ,
26
- :ram => "384 "
19
+ :ram => "512 "
27
20
} ,
28
21
{
29
- :name => "debian-8 " ,
30
- :box => "bento/debian-8 " ,
31
- :ip => '10.0.0.16 ' ,
22
+ :name => "ubuntu-2204 " ,
23
+ :box => "bento/ubuntu-22.04 " ,
24
+ :ip => '10.0.0.15 ' ,
32
25
:cpu => "50" ,
33
- :ram => "256 "
26
+ :ram => "512 "
34
27
} ,
35
28
{
36
- :name => "debian-9 " ,
37
- :box => "bento/debian-9 " ,
38
- :ip => '10.0.0.17 ' ,
29
+ :name => "ubuntu-2404 " ,
30
+ :box => "bento/ubuntu-24.04 " ,
31
+ :ip => '10.0.0.16 ' ,
39
32
:cpu => "50" ,
40
- :ram => "256 "
33
+ :ram => "512 "
41
34
} ,
42
35
{
43
36
:name => "debian-10" ,
@@ -46,6 +39,20 @@ boxes = [
46
39
:cpu => "50" ,
47
40
:ram => "256"
48
41
} ,
42
+ {
43
+ :name => "debian-11" ,
44
+ :box => "bento/debian-11" ,
45
+ :ip => '10.0.0.19' ,
46
+ :cpu => "50" ,
47
+ :ram => "256"
48
+ } ,
49
+ {
50
+ :name => "debian-12" ,
51
+ :box => "bento/debian-12" ,
52
+ :ip => '10.0.0.20' ,
53
+ :cpu => "50" ,
54
+ :ram => "384"
55
+ } ,
49
56
]
50
57
51
58
Vagrant . configure ( "2" ) do |config |
Original file line number Diff line number Diff line change 1
1
# meta file
2
2
---
3
3
galaxy_info :
4
- namespace : oefenweb
4
+ author : oefenweb
5
5
role_name : virtualenv
6
- author : Mischa ter Smitten
7
6
company : Oefenweb.nl B.V.
8
7
description : Set up (the latest version of) virtualenv(wrapper) in Debian-like systems
9
8
license : MIT
10
9
min_ansible_version : 2.10.0
11
10
platforms :
12
11
- name : Ubuntu
13
12
versions :
14
- - xenial
15
13
- bionic
16
14
- focal
15
+ - jammy
16
+ - noble
17
17
- name : Debian
18
18
versions :
19
- - jessie
20
- - stretch
21
19
- buster
20
+ - bullseye
21
+ - bookworm
22
22
galaxy_tags :
23
23
- development
24
24
- system
Original file line number Diff line number Diff line change 1
1
---
2
- collections :
3
- - name : community.docker
4
- version : ' >=1.2.0,<2'
5
- - name : community.general
6
- version : ' >=2,<3'
2
+ collections : []
Original file line number Diff line number Diff line change 5
5
name : docker
6
6
platforms :
7
7
- name : instance
8
- image : " geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu1604 }-ansible:latest"
8
+ image : " geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu2004 }-ansible:latest"
9
9
command : ${MOLECULE_DOCKER_COMMAND:-""}
10
10
volumes :
11
11
- /sys/fs/cgroup:/sys/fs/cgroup:rw
You can’t perform that action at this time.
0 commit comments