Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions ansible/roles/baselayout/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,3 +167,15 @@
- "{{ role_path }}/tasks/partials/ntp/{{ os|stripversion }}.yml"
- "{{ role_path }}/tasks/partials/ntp/{{ os|match_key(ntp_service, raise_error=False) }}.yml"
skip: true


- name: install clang
include_tasks: "{{ clang_include }}"
loop_control:
loop_var: clang_include
with_first_found:
- files:
- "{{ role_path }}/tasks/partials/clang/{{ os }}-{{ arch }}.yml"
- "{{ role_path }}/tasks/partials/clang/{{ os }}.yml"
- "{{ role_path }}/tasks/partials/clang/{{ os|stripversion }}.yml"
skip: true
10 changes: 10 additions & 0 deletions ansible/roles/baselayout/tasks/partials/clang/aix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
#
# Downloads and installs clang
#

- name: "clang : extract tarball - aix"
ansible.builtin.unarchive:
src: https://github.com/IBM/llvm-project/releases/download/llvmorg-20.1.7/clang+llvm-20.1.7-powerpc64-ibm-aix-7.2.tar.xz
dest: /opt
remote_src: yes