Update ldmsd_communicator strgp_add decomp attribute #538
Workflow file for this run
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 - Ubuntu-22.04 | |
on: | |
push: | |
branches: [ OVIS-4 ] | |
pull_request: | |
branches: [ OVIS-4 ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
container: | |
image: ovishpc/ovis-ubuntu-build | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sh autogen.sh | |
- run: ./configure CFLAGS="-Wall -Werror" | |
- run: make | |
distcheck: | |
runs-on: ubuntu-22.04 | |
container: | |
image: ovishpc/ovis-ubuntu-build | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sh autogen.sh | |
- run: ./configure | |
- run: make distcheck | |
build-with-rdma: | |
runs-on: ubuntu-22.04 | |
container: | |
image: ovishpc/ovis-ubuntu-build | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sh autogen.sh | |
- run: ./configure --enable-rdma CFLAGS="-Wall -Werror" | |
- run: make |