Skip to content

Commit bddda9d

Browse files
author
shanedsnyder
authored
Merge pull request #1013 from Snell1224/ldms_lib_include_patch
LDMS: fixing lib include
2 parents f70f09e + 786c7c5 commit bddda9d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/darshan_ldms_test_ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,23 @@ jobs:
3333
- name: Clone LDMS
3434
uses: actions/checkout@v3
3535
with:
36-
repository: ovis-hpc/ovis
37-
path: ovis
38-
ref: OVIS-4
36+
repository: ovis-hpc/ldms
37+
path: ldms
38+
ref: main
3939
- name: Install LDMS
4040
run: |
41-
cd ovis
41+
cd ldms
4242
sh autogen.sh
4343
set -e && mkdir -p build
4444
pushd build
45-
../configure --prefix=/opt/ovis-latest --enable-etc
45+
../configure --prefix=/opt/ldms-latest --enable-etc
4646
make && make install
4747
- name: Install Darshan
4848
run: |
4949
git submodule update --init
5050
# build darshan against LDMS library
5151
export DARSHAN_INSTALL_PREFIX=/opt/darshan_install
52-
export DARSHAN_RUNTIME_CONFIG_ARGS="--enable-ldms-mod --with-ldms=/opt/ovis-latest --with-jobid-env=NONE"
52+
export DARSHAN_RUNTIME_CONFIG_ARGS="--enable-ldms-mod --with-ldms=/opt/ldms-latest --with-jobid-env=NONE"
5353
darshan-test/automated/build-darshan.sh
5454
- name: Test Preparation and Run
5555
run : |
@@ -95,7 +95,7 @@ jobs:
9595
EOF
9696
echo "---starting ldmsd---"
9797
cat > ldmsd-latest.sh << EOF
98-
. /opt/ovis-latest/etc/profile.d/set-ovis-variables.sh
98+
. /opt/ldms-latest/etc/profile.d/set-ovis-variables.sh
9999
ldmsd \$@ &
100100
EOF
101101
chmod 755 ldmsd-latest.sh
@@ -105,7 +105,7 @@ jobs:
105105
pgrep -a ldmsd
106106
[[ -n "${STREAM_SAMP_LATEST_PID}" ]] || error "stream-samp-latest.log is not running"
107107
cat > ldms_ls-latest.sh << EOF
108-
. /opt/ovis-latest/etc/profile.d/set-ovis-variables.sh
108+
. /opt/ldms-latest/etc/profile.d/set-ovis-variables.sh
109109
ldms_ls \$@ &
110110
EOF
111111
chmod 755 ldms_ls-latest.sh

maint/config/check_ldms.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ldms_t ldms_xprt_new_with_auth(const char *xprt_name, const char *auth_name, str
3434
[
3535
AC_COMPILE_IFELSE(
3636
[AC_LANG_SOURCE([[
37-
#include <ldms/ldmsd_stream.h>
37+
#include <ldms/ldms.h>
3838
ldms_t ldms_xprt_new_with_auth(const char *xprt_name, ldms_log_fn_t log_fn, const char *auth_name, struct attr_value_list *auth_av_list);
3939
]])],
4040
[AC_DEFINE([LDMS_XPRT_NEW_WITH_AUTH_4], [1], [Define if ldms_xprt_new_with_auth has 4 arguments])],

0 commit comments

Comments
 (0)