Skip to content

Refactor all LDMSD plugins to use the ovis_log lib and remove the logic that passes log function handle around #1958

Refactor all LDMSD plugins to use the ovis_log lib and remove the logic that passes log function handle around

Refactor all LDMSD plugins to use the ovis_log lib and remove the logic that passes log function handle around #1958

name: Build Test - CentOS7
on:
push:
branches: [ OVIS-4 ]
pull_request:
branches: [ OVIS-4 ]
jobs:
build:
runs-on: ubuntu-20.04
container:
image: ovishpc/ovis-centos-build
steps:
- uses: actions/checkout@v3
- run: sh autogen.sh
- run: ./configure CFLAGS="-Wall -Werror"
- run: make
distcheck:
runs-on: ubuntu-20.04
container:
image: ovishpc/ovis-centos-build
steps:
- uses: actions/checkout@v3
- run: sh autogen.sh
- run: ./configure
- run: make distcheck
build-with-rdma:
runs-on: ubuntu-20.04
container:
image: ovishpc/ovis-centos-build
steps:
- uses: actions/checkout@v3
- run: sh autogen.sh
- run: ./configure --enable-rdma CFLAGS="-Wall -Werror"
- run: make