summaryrefslogtreecommitdiff
path: root/roles/install_isal/tasks/main.yaml
blob: a9aa1009ace14035e0861eb4ce288a0369da5edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
- name: Ensure legacy workspace directory
  file:
    path: '{{ ansible_user_dir }}/workspace'
    state: directory

- name: install yasm
  package:
    name: yasm
    state: present
  become: yes

- name: Build and Install ISA-L
  shell:
    cmd: |
      set -e
      set -x
      cd $WORKSPACE
      git clone git://github.com/01org/isa-l.git
      cd isa-l
      ./autogen.sh
      ./configure
      make
      sudo make install
    executable: /bin/bash
    chdir: '{{ ansible_user_dir }}/workspace'
  environment: '{{ zuul | zuul_legacy_vars }}'