mirror of
https://github.com/ceph/ceph
synced 2025-02-06 10:23:52 +00:00
This will ensure we have a matching version of MPI. Signed-off-by: Sage Weil <sage@redhat.com> Reviewed-by: Greg Farnum <gfarnum@redhat.com>
23 lines
603 B
YAML
23 lines
603 B
YAML
# make sure we get the same MPI version on all hosts
|
|
os_type: ubuntu
|
|
os_version: "14.04"
|
|
|
|
tasks:
|
|
- pexec:
|
|
clients:
|
|
- cd $TESTDIR
|
|
- wget http://ceph.com/qa/mdtest-1.9.3.tgz
|
|
- mkdir mdtest-1.9.3
|
|
- cd mdtest-1.9.3
|
|
- tar xvfz $TESTDIR/mdtest-1.9.3.tgz
|
|
- rm $TESTDIR/mdtest-1.9.3.tgz
|
|
- MPI_CC=mpicc make
|
|
- ln -s $TESTDIR/mnt.* $TESTDIR/gmnt
|
|
- ssh_keys:
|
|
- mpi:
|
|
exec: $TESTDIR/mdtest-1.9.3/mdtest -d $TESTDIR/gmnt -I 20 -z 5 -b 2 -R
|
|
- pexec:
|
|
all:
|
|
- rm -f $TESTDIR/gmnt
|
|
- rm -rf $TESTDIR/mdtest-1.9.3
|
|
- rm -rf $TESTDIR/._mdtest-1.9.3 |