mirror of
https://github.com/ceph/ceph
synced 2025-02-06 10:23:52 +00:00
0a88b34ba3
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>
21 lines
457 B
Plaintext
21 lines
457 B
Plaintext
# 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/fsx-mpi.c
|
|
- mpicc fsx-mpi.c -o fsx-mpi
|
|
- rm fsx-mpi.c
|
|
- ln -s $TESTDIR/mnt.* $TESTDIR/gmnt
|
|
- ssh_keys:
|
|
- mpi:
|
|
exec: $TESTDIR/fsx-mpi 1MB -N 50000 -p 10000 -l 1048576
|
|
workdir: $TESTDIR/gmnt
|
|
- pexec:
|
|
all:
|
|
- rm $TESTDIR/gmnt
|
|
- rm $TESTDIR/fsx-mpi
|