File tree 1 file changed +16
-3
lines changed
1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 37
37
loop : " {{ buildarg_items[1:] }}"
38
38
when : " 'build_args' in project.1 and project.1.build_args.keys() | length > 1"
39
39
40
- - name : Containers with more than one build argument
40
+ - name : Containers with two build arguments
41
41
set_fact :
42
42
projects : >-
43
43
{{
44
44
projects | default([]) + [
45
45
project.1 | combine({
46
- 'name': project.0 + '-' + item | join('-'),
46
+ 'name': project.0 + '-' + ( item | join('-') ),
47
47
'build_args': dict(project.1.build_args.keys() | zip(item))
48
48
})] | list
49
49
}}
50
50
loop : " {{ combos }}"
51
- when : " 'build_args' in project.1 and project.1.build_args.keys() | length > 1"
51
+ when : " 'build_args' in project.1 and project.1.build_args.keys() | length == 2"
52
+
53
+ - name : Containers with more than two build arguments
54
+ set_fact :
55
+ projects : >-
56
+ {{
57
+ projects | default([]) + [
58
+ project.1 | combine({
59
+ 'name': project.0 + '-' + (item | flatten | join('-')),
60
+ 'build_args': dict(project.1.build_args.keys() | zip(item | flatten))
61
+ })] | list
62
+ }}
63
+ loop : " {{ combos }}"
64
+ when : " 'build_args' in project.1 and project.1.build_args.keys() | length > 2"
You can’t perform that action at this time.
0 commit comments