v6.0.x: Removals and updates for example / demo components #3
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: Compile ignored components | |
| on: [pull_request] | |
| jobs: | |
| compile-ignored: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Remove .opal_ignore files so that we build all examples | |
| run: | | |
| find . -name .opal_ignore -exec rm -f {} \; -print | |
| - name: Build Open MPI | |
| run: | | |
| ./autogen.pl | |
| ./configure --prefix=${PWD}/install --disable-silent-rules | |
| make -j |