File tree Expand file tree Collapse file tree 9 files changed +106
-7
lines changed Expand file tree Collapse file tree 9 files changed +106
-7
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.0.5]
9
+ #### Fixed
10
+
11
+ - Restart act_runner after update
12
+
8
13
## [ 1.0.4]
9
14
10
15
#### Fixed
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ namespace: wzzrd
8
8
name : gitea
9
9
10
10
# The version of the collection. Must be compatible with semantic versioning
11
- version : 1.0.4
11
+ version : 1.0.5
12
12
13
13
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
14
14
readme : README.md
Original file line number Diff line number Diff line change @@ -26,9 +26,3 @@ provisioner:
26
26
name : ansible
27
27
verifier :
28
28
name : ansible
29
- driver :
30
- options :
31
- managed : false
32
- login_cmd_template : " podman exec -ti {instance} bash"
33
- ansible_connection_options :
34
- ansible_connection : podman
Original file line number Diff line number Diff line change
1
+ - name : Converge act_runner 0.2.6
2
+ hosts : all
3
+ gather_facts : false
4
+ vars :
5
+ act_runner_version : " 0.2.6"
6
+ pre_tasks :
7
+ - name : Gather required subset of facts
8
+ ansible.builtin.setup :
9
+ gather_subset :
10
+ - ' !all'
11
+
12
+ roles :
13
+ - role : act
14
+
15
+ - name : Converge act_runner 0.2.10
16
+ hosts : all
17
+ gather_facts : false
18
+ vars :
19
+ act_runner_version : " 0.2.10"
20
+ pre_tasks :
21
+ - name : Gather required subset of facts
22
+ ansible.builtin.setup :
23
+ gather_subset :
24
+ - ' !all'
25
+
26
+ roles :
27
+ - role : act
Original file line number Diff line number Diff line change
1
+ ---
2
+ dependency :
3
+ name : galaxy
4
+ options :
5
+ requirements-file : requirements.yml
6
+ platforms :
7
+ - name : ubi8
8
+ image : registry.access.redhat.com/ubi8/ubi-init
9
+ pre_built_image : true
10
+ cgroupns_mode : host
11
+ volumes :
12
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
13
+ privileged : true
14
+ command : " /usr/sbin/init"
15
+ platform : linux/amd64
16
+ - name : ubi9
17
+ image : registry.access.redhat.com/ubi9/ubi-init
18
+ pre_built_image : true
19
+ cgroupns_mode : host
20
+ volumes :
21
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
22
+ privileged : true
23
+ command : " /usr/sbin/init"
24
+ platform : linux/amd64
25
+ provisioner :
26
+ name : ansible
27
+ verifier :
28
+ name : ansible
29
+ scenario :
30
+ test_sequence :
31
+ - dependency - cleanup
32
+ - destroy
33
+ - syntax
34
+ - create
35
+ - prepare
36
+ - converge
37
+ - side_effect
38
+ - verify
39
+ - cleanup
40
+ - destroy
Original file line number Diff line number Diff line change
1
+ - name : Prepare containers for molecule tests
2
+ hosts : all
3
+ gather_facts : false
4
+ tasks :
5
+ - name : Install packages for during tests
6
+ ansible.builtin.package :
7
+ name : xz
8
+ state : present
Original file line number Diff line number Diff line change
1
+ collections :
2
+ - containers.podman
3
+ - community.general
Original file line number Diff line number Diff line change
1
+ - name : Verify
2
+ hosts : all
3
+ # We disable gather facts because it would fail due to our container not
4
+ # having python installed. This will not prevent use from running 'raw'
5
+ # commands. Most molecule users are expected to use containers that already
6
+ # have python installed in order to avoid notable delays installing it.
7
+ gather_facts : false
8
+
9
+ tasks :
10
+ - name : Check if act_runner binary exists
11
+ block :
12
+ - name : Check for existence of /usr/local/bin/act_runner
13
+ ansible.builtin.stat :
14
+ path : /usr/local/bin/act_runner
15
+ register : act_runner_stat_result
16
+
17
+ - name : Verify result of previous task
18
+ ansible.builtin.assert :
19
+ that :
20
+ - act_runner_stat_result.stat.exists
Original file line number Diff line number Diff line change 60
60
- name : Download and install new binary, if needed
61
61
when : (detected_version is not defined) or
62
62
(act_runner_version != detected_version[1:])
63
+ notify : Restart act_runner
63
64
tags :
64
65
- version
65
66
block :
88
89
dest : " {{ act_user_home }}/checksums.txt"
89
90
owner : " {{ act_user }}"
90
91
mode : " 0640"
92
+ force : true
91
93
92
94
- name : Get checksum for release from file
93
95
block :
You can’t perform that action at this time.
0 commit comments