File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
ansible/playbooks/AdoptOpenJDK_Unix_Playbook/roles/Common Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 79
79
80
80
- name : Install additional build tools when NOT CentOS8+
81
81
package : " name={{ item }} state=latest"
82
- with_items : " {{ Additional_Build_Tools_NOT_CentOS8_CentOS9Stream }}"
82
+ with_items : " {{ Additional_Build_Tools_NOT_CentOS8plus }}"
83
83
when :
84
- - ansible_distribution_major_version| int < 8
84
+ - ansible_distribution_major_version | int < 8
85
85
tags : build_tools
86
86
87
87
- name : Install additional test tools for CentOS 10+ e.g. weston
207
207
- ansible_architecture == "x86_64" and ansible_distribution_major_version == "7"
208
208
tags : build_tools
209
209
210
- - name : Install additional build tools for CentOS on x86
210
+ - name : Install additional build tools for CentOS on x86 for EL<10 (Not 32-bit support)
211
211
package : " name={{ item }} state=latest"
212
212
with_items : " {{ Additional_Build_Tools_CentOS_x86 }}"
213
213
when :
214
214
- ansible_architecture == "x86_64"
215
+ - ansible_distribution_major_version | int < 10
215
216
tags : build_tools
216
217
217
218
- name : Create symlink for /opt/rh/devtoolset-2/root/usr/bin/gcc to gcc
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ Additional_Build_Tools_CentOS8_Plus:
82
82
- ccache
83
83
- procps-ng
84
84
85
- Additional_Build_Tools_NOT_CentOS8_CentOS9Stream :
85
+ Additional_Build_Tools_NOT_CentOS8plus :
86
86
- lbzip2
87
87
- java-1.7.0-openjdk-devel
88
88
- java-1.8.0-openjdk-devel
You can’t perform that action at this time.
0 commit comments