Replace automatic rdtscp checks with boolean option
[gromacs.git] / python_packaging / sample_restraint / ci_scripts / pygmx_devel.sh
blobad9df802f0e4884c7a2af31a02e2413c36f949fe
1 #!/bin/bash
2 set -ev
4 pushd $HOME
5 [ -d gmxapi ] || git clone --depth=1 --no-single-branch https://github.com/kassonlab/gmxapi.git
6 pushd gmxapi
7 git checkout devel
8 rm -rf build
9 mkdir -p build
10 pushd build
11 cmake .. -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC -DPYTHON_EXECUTABLE=$PYTHON
12 make -j2 install
13 make -j2 docs
14 popd
15 popd
16 # mpiexec -n 2 $PYTHON -m mpi4py -m pytest --log-cli-level=DEBUG --pyargs gmx -s --verbose
17 mpiexec -n 2 $PYTHON -m mpi4py -m pytest --pyargs gmx -s --verbose
18 ccache -s
19 popd