Skip to content

Commit 60e17d9

Browse files
committed
add make check to CI
1 parent 7346629 commit 60e17d9

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

darshan-test/automated/build-darshan.sh

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ if [ ! -v DARSHAN_RUNTIME_SKIP ]; then
2828
DARSHAN_RUNTIME_CONFIG_ARGS="--with-jobid-env=NONE --enable-apmpi-mod"
2929
fi
3030
$darshan_root_dir/darshan-runtime/configure $DARSHAN_RUNTIME_CONFIG_ARGS --with-log-path=$DARSHAN_LOG_PATH --prefix=$DARSHAN_INSTALL_PREFIX
31-
make install
31+
make -j8 install
32+
33+
# run check
34+
make check
3235
fi
3336

3437
# configure and build darshan-util
@@ -37,4 +40,8 @@ if [ -z "${DARSHAN_UTIL_CONFIG_ARGS}" ]; then
3740
DARSHAN_UTIL_CONFIG_ARGS="--enable-apmpi-mod --enable-apxc-mod"
3841
fi
3942
$darshan_root_dir/darshan-util/configure $DARSHAN_UTIL_CONFIG_ARGS --prefix=$DARSHAN_INSTALL_PREFIX
40-
make install
43+
make -j8 install
44+
45+
# run check
46+
make check
47+

0 commit comments

Comments
 (0)