File tree Expand file tree Collapse file tree 8 files changed +1410
-0
lines changed
tests/integration/targets
podman_system_connection_info/tasks
podman_system_connection/tasks Expand file tree Collapse file tree 8 files changed +1410
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Podman system connection
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - ' .github/workflows/podman_system_connection.yml'
7
+ - ' .github/workflows/reusable-module-test.yml'
8
+ - ' ci/*.yml'
9
+ - ' ci/run_containers_tests.sh'
10
+ - ' ci/playbooks/containers/podman_system_connection.yml'
11
+ - ' plugins/modules/podman_system_connection.py'
12
+ - ' tests/integration/targets/podman_system_connection/**'
13
+ branches :
14
+ - main
15
+ pull_request :
16
+ paths :
17
+ - ' .github/workflows/podman_system_connection.yml'
18
+ - ' .github/workflows/reusable-module-test.yml'
19
+ - ' ci/*.yml'
20
+ - ' ci/run_containers_tests.sh'
21
+ - ' ci/playbooks/containers/podman_system_connection.yml'
22
+ - ' plugins/modules/podman_system_connection.py'
23
+ - ' tests/integration/targets/podman_system_connection/**'
24
+ schedule :
25
+ - cron : 4 0 * * * # Run daily at 0:03 UTC
26
+
27
+ jobs :
28
+ test_podman_system_connection :
29
+ uses : ./.github/workflows/reusable-module-test.yml
30
+ with :
31
+ module_name : ' podman_system_connection'
32
+ display_name : ' Podman system connection'
Original file line number Diff line number Diff line change
1
+ name : Podman system connection info
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - ' .github/workflows/podman_system_connection_info.yml'
7
+ - ' .github/workflows/reusable-module-test.yml'
8
+ - ' ci/*.yml'
9
+ - ' ci/run_containers_tests.sh'
10
+ - ' ci/playbooks/containers/podman_system_connection_info.yml'
11
+ - ' plugins/modules/podman_system_connection_info.py'
12
+ - ' tests/integration/targets/podman_system_connection_info/**'
13
+ branches :
14
+ - main
15
+ pull_request :
16
+ paths :
17
+ - ' .github/workflows/podman_system_connection_info.yml'
18
+ - ' .github/workflows/reusable-module-test.yml'
19
+ - ' ci/*.yml'
20
+ - ' ci/run_containers_tests.sh'
21
+ - ' ci/playbooks/containers/podman_system_connection_info.yml'
22
+ - ' plugins/modules/podman_system_connection_info.py'
23
+ - ' tests/integration/targets/podman_system_connection_info/**'
24
+ schedule :
25
+ - cron : 4 0 * * * # Run daily at 0:03 UTC
26
+
27
+ jobs :
28
+ test_podman_system_connection_info :
29
+ uses : ./.github/workflows/reusable-module-test.yml
30
+ with :
31
+ module_name : ' podman_system_connection_info'
32
+ display_name : ' Podman system connection info'
Original file line number Diff line number Diff line change
1
+ ---
2
+ - hosts : all
3
+ gather_facts : true
4
+ tasks :
5
+ - include_role :
6
+ name : podman_system_connection
7
+ vars :
8
+ ansible_python_interpreter : " {{ _ansible_python_interpreter }}"
Original file line number Diff line number Diff line change
1
+ ---
2
+ - hosts : all
3
+ gather_facts : true
4
+ tasks :
5
+ - include_role :
6
+ name : podman_system_connection_info
7
+ vars :
8
+ ansible_python_interpreter : " {{ _ansible_python_interpreter }}"
You can’t perform that action at this time.
0 commit comments