Fix the reset mode of updtr_status in ldmsd_controller #2599
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Test - CentOS7 | |
on: | |
push: | |
branches: | |
- 'OVIS-4' | |
- main | |
- 'b[0-9]+.[0-9]+' | |
pull_request: | |
branches: | |
- 'OVIS-4' | |
- main | |
- 'b[0-9]+.[0-9]+' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
container: | |
image: ovishpc/ovis-centos-build | |
steps: | |
- uses: actions/checkout@v1 | |
- 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@v1 | |
- 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@v1 | |
- run: sh autogen.sh | |
- run: ./configure --enable-rdma CFLAGS="-Wall -Werror" | |
- run: make |