File tree 5 files changed +25
-21
lines changed
5 files changed +25
-21
lines changed Original file line number Diff line number Diff line change @@ -47,11 +47,11 @@ jobs:
47
47
- distro : debian10
48
48
- distro : debian11
49
49
- distro : debian12
50
- - distro : ubuntu1604
51
- ansible-version : ' >=2.10, <2.11'
52
- - distro : ubuntu1604
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,7 +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"
20
+ } ,
21
+ {
22
+ :name => "ubuntu-2204" ,
23
+ :box => "bento/ubuntu-22.04" ,
24
+ :ip => '10.0.0.15' ,
25
+ :cpu => "50" ,
26
+ :ram => "512"
27
+ } ,
28
+ {
29
+ :name => "ubuntu-2404" ,
30
+ :box => "bento/ubuntu-24.04" ,
31
+ :ip => '10.0.0.16' ,
32
+ :cpu => "50" ,
33
+ :ram => "512"
27
34
} ,
28
35
{
29
36
:name => "debian-10" ,
@@ -44,7 +51,7 @@ boxes = [
44
51
:box => "bento/debian-12" ,
45
52
:ip => '10.0.0.20' ,
46
53
:cpu => "50" ,
47
- :ram => "256 "
54
+ :ram => "384 "
48
55
} ,
49
56
]
50
57
Original file line number Diff line number Diff line change @@ -10,9 +10,10 @@ galaxy_info:
10
10
platforms :
11
11
- name : Ubuntu
12
12
versions :
13
- - xenial
14
13
- bionic
15
14
- focal
15
+ - jammy
16
+ - noble
16
17
- name : Debian
17
18
versions :
18
19
- buster
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