Skip to content

Commit

Permalink
another check
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush committed Apr 29, 2021
1 parent 88f6767 commit ffa26d8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions azure-pipelines.yml
Expand Up @@ -607,6 +607,28 @@ stages:
./conduit_example
displayName: 'Test vs Install (using-with-make)'
- script: |
################################
# using with cmake mpi example
###############################
pwd
ls -l
# find spack installed cmake
export ROOT_DIR=`pwd`
export CMAKE_BIN_DIR=`ls -d ${ROOT_DIR}/uberenv_libs/spack/opt/spack/*/*/cmake*/bin`
export PATH=${CMAKE_BIN_DIR}:$PATH
echo $PATH
which cmake
cd install/examples/conduit/using-with-cmake-mpi
rm -rf _test_build
mkdir _test_build
cd _test_build
cmake ../
make VERBOSE=1
mpiexec -n 1 ./conduit_mpi_example
displayName: 'Test vs Install (using-with-cmake-mpi)'
condition: eq(variables['ENABLE_MPI'], 'ON')
- script: |
################################
# cpp fort and py example
Expand Down

0 comments on commit ffa26d8

Please sign in to comment.