Correct cflags used for check_compiler_version.m4 #797
Workflow file for this run
This file contains hidden or 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 tests | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| macos: | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| path: ['non-vpath', 'vpath'] | |
| sphinx: ['no-sphinx', 'sphinx'] | |
| steps: | |
| - name: Install dependencies | |
| run: brew install libevent hwloc autoconf automake libtool | |
| - name: Git clone OpenPMIx | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| repository: openpmix/openpmix | |
| path: openpmix/master | |
| ref: master | |
| - name: Build OpenPMIx | |
| run: | | |
| cd openpmix/master | |
| # Homebrew doesn't install Libevent's (or libev's) header or | |
| # library files into a default search location. Shrug. So | |
| # use pkg-config to get the location and explicitly pass it to | |
| # configure. | |
| libevent_cppflags=$(pkg-config libevent --cflags) | |
| libevent_ldflags=$(pkg-config libevent --libs | perl -pe 's/^.*(-L[^ ]+).*$/\1/') | |
| ./autogen.pl | |
| ./configure --prefix=$RUNNER_TEMP/pmixinstall \ | |
| CPPFLAGS=$libevent_cppflags \ | |
| LDFLAGS=$libevent_ldflags | |
| make -j | |
| make install | |
| - name: Git clone PRRTE | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| clean: false | |
| - name: Build PRRTE | |
| run: | | |
| ./autogen.pl | |
| sphinx= | |
| if test "${{ matrix.sphinx }}" = sphinx; then | |
| # The macos Github Action environment gets angry at us if | |
| # we try to pip install into the global environment. So | |
| # make a virtual environment and install sphinx into that. | |
| python -m venv venv | |
| . ./venv/bin/activate | |
| pip3 install -r docs/requirements.txt | |
| sphinx=--enable-sphinx | |
| fi | |
| c=./configure | |
| if test "${{ matrix.path }}" = vpath; then | |
| mkdir build | |
| cd build | |
| c=../configure | |
| fi | |
| # Homebrew doesn't install Libevent's (or libev's) header or | |
| # library files into a default search location. Shrug. So | |
| # use pkg-config to get the location and explicitly pass it to | |
| # configure. | |
| libevent_cppflags=$(pkg-config libevent --cflags) | |
| libevent_ldflags=$(pkg-config libevent --libs | perl -pe 's/^.*(-L[^ ]+).*$/\1/') | |
| $c --prefix=$RUNNER_TEMP/prteinstall --with-pmix=$RUNNER_TEMP/pmixinstall $sphinx \ | |
| --enable-devel-check \ | |
| --enable-testbuild-launchers \ | |
| CPPFLAGS=$libevent_cppflags \ | |
| LDFLAGS=$libevent_ldflags | |
| make -j | |
| make install | |
| - name: Build examples | |
| run: | | |
| pushd examples | |
| export PATH=$RUNNER_TEMP/prteinstall/bin:$RUNNER_TEMP/pmixinstall/bin:${PATH} | |
| make | |
| popd | |
| - name: Test sanity check | |
| run: | | |
| export PATH=$RUNNER_TEMP/prteinstall/bin:$RUNNER_TEMP/pmixinstall/bin:${PATH} | |
| export LD_LIBRARY_PATH=$RUNNER_TEMP/prteinstall/lib:${LD_LIBRARY_PATH} | |
| prterun --map-by ppr:1:core examples/hello | |
| ubuntu: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| path: ['non-vpath', 'vpath'] | |
| sphinx: ['no-sphinx', 'sphinx'] | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends software-properties-common libhwloc-dev libevent-dev | |
| - name: Git clone OpenPMIx | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| repository: openpmix/openpmix | |
| path: openpmix/master | |
| ref: master | |
| - name: Build OpenPMIx | |
| run: | | |
| cd openpmix/master | |
| ./autogen.pl | |
| ./configure --prefix=$RUNNER_TEMP/pmixinstall | |
| make -j | |
| make install | |
| - name: Git clone PRRTE | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| clean: false | |
| - name: Build PRRTE | |
| run: | | |
| ./autogen.pl | |
| sphinx= | |
| if test "${{ matrix.sphinx }}" = sphinx; then | |
| pip3 install -r docs/requirements.txt | |
| sphinx=--enable-sphinx | |
| fi | |
| c=./configure | |
| if test "${{ matrix.path }}" = vpath; then | |
| mkdir build | |
| cd build | |
| c=../configure | |
| fi | |
| $c --prefix=$RUNNER_TEMP/prteinstall --with-pmix=$RUNNER_TEMP/pmixinstall $sphinx \ | |
| --enable-devel-check \ | |
| --enable-testbuild-launchers | |
| make -j | |
| make install | |
| - name: Build examples | |
| run: | | |
| pushd examples | |
| export PATH=$RUNNER_TEMP/prteinstall/bin:$RUNNER_TEMP/pmixinstall/bin:${PATH} | |
| export LD_LIBRARY_PATH=$RUNNER_TEMP/prteinstall/lib:${LD_LIBRARY_PATH} | |
| make | |
| popd | |
| - name: Test sanity check | |
| run: | | |
| export PATH=$RUNNER_TEMP/prteinstall/bin:$RUNNER_TEMP/pmixinstall/bin:${PATH} | |
| export LD_LIBRARY_PATH=$RUNNER_TEMP/prteinstall/lib:${LD_LIBRARY_PATH} | |
| prterun --map-by ppr:1:core examples/hello | |
| prterun --map-by ppr:1:core examples/legacy | |
| ubuntuClang: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends software-properties-common libhwloc-dev libevent-dev clang | |
| - name: Git clone OpenPMIx | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| repository: openpmix/openpmix | |
| path: openpmix/master | |
| ref: master | |
| - name: Build OpenPMIx | |
| run: | | |
| cd openpmix/master | |
| ./autogen.pl | |
| CC=clang ./configure --prefix=$RUNNER_TEMP/pmixinstall | |
| make -j | |
| make install | |
| - name: Git clone PRRTE | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| clean: false | |
| - name: Build PRRTE | |
| run: | | |
| ./autogen.pl | |
| pip3 install -r docs/requirements.txt | |
| sphinx=--enable-sphinx | |
| c=./configure | |
| CC=clang $c --prefix=$RUNNER_TEMP/prteinstall --with-pmix=$RUNNER_TEMP/pmixinstall $sphinx \ | |
| --enable-devel-check \ | |
| --enable-testbuild-launchers | |
| make -j | |
| make install | |
| - name: Build examples | |
| run: | | |
| pushd examples | |
| export PATH=$RUNNER_TEMP/prteinstall/bin:$RUNNER_TEMP/pmixinstall/bin:${PATH} | |
| export LD_LIBRARY_PATH=$RUNNER_TEMP/prteinstall/lib:${LD_LIBRARY_PATH} | |
| make | |
| popd | |
| - name: Test sanity check | |
| run: | | |
| export PATH=$RUNNER_TEMP/prteinstall/bin:$RUNNER_TEMP/pmixinstall/bin:${PATH} | |
| export LD_LIBRARY_PATH=$RUNNER_TEMP/prteinstall/lib:${LD_LIBRARY_PATH} | |
| prterun --map-by ppr:1:core examples/hello | |
| prterun --map-by ppr:1:core examples/legacy | |
| distcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends software-properties-common libhwloc-dev libevent-dev python3 python3-pip | |
| - name: Git clone OpenPMIx | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| repository: openpmix/openpmix | |
| path: openpmix/master | |
| ref: master | |
| - name: Build OpenPMIx | |
| run: | | |
| cd openpmix/master | |
| ./autogen.pl | |
| ./configure --prefix=$RUNNER_TEMP/pmixinstall | |
| make -j | |
| make install | |
| - name: Git clone PRRTE | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| clean: false | |
| - name: Distcheck | |
| run: | | |
| pip install -r docs/requirements.txt | |
| ./autogen.pl | |
| ./configure --prefix=$RUNNER_TEMP/prteinstall --with-pmix=$RUNNER_TEMP/pmixinstall --enable-sphinx \ | |
| --enable-devel-check \ | |
| --enable-testbuild-launchers | |
| make distcheck AM_DISTCHECK_MAKEFLAGS=-j AM_DISTCHECK_CONFIGURE_FLAGS="--with-pmix=$RUNNER_TEMP/pmixinstall" |