forked from openstack/liberasurecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "Install Jerasure and ISA-L libs"
- Loading branch information
Showing
4 changed files
with
80 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }}' |