]> git.proxmox.com Git - ceph.git/blob - ceph/qa/suites/fs/multiclient/tasks/ior-shared-file.yaml
update ceph source to reef 18.2.1
[ceph.git] / ceph / qa / suites / fs / multiclient / tasks / ior-shared-file.yaml
1 # make sure we get the same MPI version on all hosts
2 tasks:
3 - pexec:
4 clients:
5 - set -x
6 - cd $TESTDIR
7 # partially or incorrectly installed mpich will create a mess and the
8 # configure script or the build process (which is initiated using "make"
9 # command) for the ior project will fail
10 - sudo apt purge -y mpich
11 - sudo apt install -y mpich
12 - wget http://download.ceph.com/qa/ior-3.3.0.tar.bz2
13 - tar xvfj ior-3.3.0.tar.bz2
14 - cd ior-3.3.0
15 - ./configure
16 - make
17 - make install DESTDIR=$TESTDIR/binary/
18 - cd $TESTDIR/
19 - sudo apt install -y tree
20 - tree binary/
21 - rm ior-3.3.0.tar.bz2
22 - rm -r ior-3.3.0
23 - ln -s $TESTDIR/mnt.* $TESTDIR/gmnt
24 - ssh_keys:
25 - mpi:
26 exec: $TESTDIR/binary/usr/local/bin/ior -e -w -r -W -b 10m -a POSIX -o $TESTDIR/gmnt/ior.testfile
27 - pexec:
28 clients:
29 - rm -f $TESTDIR/gmnt/ior.testfile
30 - rm -f $TESTDIR/gmnt
31 - rm -rf $TESTDIR/binary