Skip to content

Commit 5a1da01

Browse files
authored
ansible: install llvm-toolset for building V8 (#4153)
When building with `clang`, the V8 CI needs other tools such as `llvm-ar` found in `llvm-toolset` on RHEL. Refs: #4091
1 parent ae55a78 commit 5a1da01

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ansible/roles/build-test-v8/tasks/partials/rhel8-ppc64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# V8 builds still require Python 2.
1414
- name: install packages required to build V8
1515
ansible.builtin.dnf:
16-
name: ['glib2-devel', 'ninja-build', 'python2', 'python2-pip']
16+
name: ['glib2-devel', 'llvm-toolset', 'ninja-build', 'python2', 'python2-pip']
1717
state: present
1818
notify: package updated
1919

ansible/roles/build-test-v8/tasks/partials/rhel8-s390x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# Older V8 builds still require Python 2.
1414
- name: install packages required to build V8
1515
ansible.builtin.dnf:
16-
name: ['GConf2-devel', 'ninja-build', 'python2', 'python2-pip']
16+
name: ['GConf2-devel', 'llvm-toolset', 'ninja-build', 'python2', 'python2-pip']
1717
state: present
1818
notify: package updated
1919

ansible/roles/build-test-v8/tasks/partials/rhel8-x64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# V8 builds still require Python 2.
1414
- name: install packages required to build V8
1515
ansible.builtin.dnf:
16-
name: ['ninja-build', 'python2', 'python2-pip']
16+
name: ['llvm-toolset', 'ninja-build', 'python2', 'python2-pip']
1717
state: present
1818
notify: package updated
1919

0 commit comments

Comments
 (0)