From 096effe62a614085d4fccc3f67ddb06650ad5b5e Mon Sep 17 00:00:00 2001 From: Thiago da Silva Date: Fri, 21 Sep 2018 11:29:15 -0400 Subject: [PATCH] Install Jerasure and ISA-L libs Install libraries to be tested w/ liberasurecode Change-Id: Ic1cd7b61c780cf794640e4ce0d57e6126ad5756b --- playbooks/unittests/run.yaml | 17 +++-------- roles/install_isal/tasks/main.yaml | 26 ++++++++++++++++ roles/install_jerasure/tasks/main.yaml | 36 +++++++++++++++++++++++ roles/test_liberasurecode/tasks/main.yaml | 14 +++++++++ 4 files changed, 80 insertions(+), 13 deletions(-) create mode 100644 roles/install_isal/tasks/main.yaml create mode 100644 roles/install_jerasure/tasks/main.yaml create mode 100644 roles/test_liberasurecode/tasks/main.yaml diff --git a/playbooks/unittests/run.yaml b/playbooks/unittests/run.yaml index c66c4e3..9818ef9 100644 --- a/playbooks/unittests/run.yaml +++ b/playbooks/unittests/run.yaml @@ -1,15 +1,6 @@ - hosts: all + roles: + - install_isal + - install_jerasure + - test_liberasurecode - tasks: - - name: Build and test - shell: - cmd: | - set -e - set -x - ./autogen.sh - ./configure - make - make test - make valgrind-test - executable: /bin/bash - chdir: '{{ zuul.project.src_dir }}' diff --git a/roles/install_isal/tasks/main.yaml b/roles/install_isal/tasks/main.yaml new file mode 100644 index 0000000..a9aa100 --- /dev/null +++ b/roles/install_isal/tasks/main.yaml @@ -0,0 +1,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 }}' diff --git a/roles/install_jerasure/tasks/main.yaml b/roles/install_jerasure/tasks/main.yaml new file mode 100644 index 0000000..6a5abe9 --- /dev/null +++ b/roles/install_jerasure/tasks/main.yaml @@ -0,0 +1,36 @@ +- name: Ensure legacy workspace directory + file: + path: '{{ ansible_user_dir }}/workspace' + state: directory + +- name: Build and Install GF-Complete + shell: + cmd: | + set -e + set -x + cd $WORKSPACE + git clone http://lab.jerasure.org/jerasure/gf-complete.git + cd gf-complete + ./autogen.sh + ./configure + make + sudo make install + executable: /bin/bash + chdir: '{{ ansible_user_dir }}/workspace' + environment: '{{ zuul | zuul_legacy_vars }}' + +- name: Build and Install Jerasure + shell: + cmd: | + set -e + set -x + cd $WORKSPACE + git clone http://lab.jerasure.org/jerasure/jerasure.git + cd jerasure + autoreconf --force --install + ./configure + make + sudo make install + executable: /bin/bash + chdir: '{{ ansible_user_dir }}/workspace' + environment: '{{ zuul | zuul_legacy_vars }}' diff --git a/roles/test_liberasurecode/tasks/main.yaml b/roles/test_liberasurecode/tasks/main.yaml new file mode 100644 index 0000000..4df9215 --- /dev/null +++ b/roles/test_liberasurecode/tasks/main.yaml @@ -0,0 +1,14 @@ +- name: Build and test liberasurecode + shell: + cmd: | + set -e + set -x + sudo bash -c "echo /usr/local/lib >> /etc/ld.so.conf" + sudo ldconfig + ./autogen.sh + ./configure + make + make test + make valgrind-test + executable: /bin/bash + chdir: '{{ zuul.project.src_dir }}'