Skip to content

Commit

Permalink
github/workflow: More fix for coverity build
Browse files Browse the repository at this point in the history
The LDFLAGS passed to fabtests build command line also needs to use
absolute path.

Signed-off-by: Jianxin Xiong <jianxin.xiong@intel.com>
  • Loading branch information
j-xiong committed Feb 12, 2024
1 parent 1386ffa commit 77bbf57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
./autogen.sh
./configure --with-libfabric=$PWD/../install CC=clang
popd
cov-build --dir cov-int bash -c "make && make -C fabtests LDFLAGS=-L${{ env.RDMA_CORE_PATH }}/lib"
cov-build --dir cov-int bash -c "make && make -C fabtests LDFLAGS=-L$PWD/${{ env.RDMA_CORE_PATH }}/lib"
- name: Submit results
run: |
tar czvf libfabric.tgz cov-int
Expand Down

0 comments on commit 77bbf57

Please sign in to comment.