Feature/mpi gpu assignment #97
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: linux-gnu-multithreaded-cmake | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/' | |
- 'AUTHORS.md' | |
- 'LICENSE.md' | |
- 'README.md' | |
pull_request: | |
paths-ignore: | |
- 'docs/' | |
- 'AUTHORS.md' | |
- 'LICENSE.md' | |
- 'README.md' | |
jobs: | |
linux-tests: | |
timeout-minutes: 60 | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
name: ${{ matrix.os }} - ${{ matrix.fcompiler }} - ${{ matrix.build_type }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Linux | |
- os: ubuntu-22.04 | |
fcompiler: gfortran-12 | |
ccompiler: gcc-12 | |
gcov: gcov-12 | |
spack_compiler: gcc@=12.3.0 | |
spack_os: "ubuntu:22.04" | |
shell: bash | |
build_type: release | |
memcheck: false | |
- os: ubuntu-22.04 | |
fcompiler: gfortran-9 | |
ccompiler: gcc-9 | |
gcov: gcov-9 | |
spack_compiler: gcc@=9.5.0 | |
spack_os: "ubuntu:22.04" | |
shell: bash | |
build_type: release | |
memcheck: false | |
- os: ubuntu-22.04 | |
fcompiler: gfortran-10 | |
ccompiler: gcc-10 | |
gcov: gcov-10 | |
spack_compiler: gcc@=10.5.0 | |
spack_os: "ubuntu:22.04" | |
shell: bash | |
build_type: release | |
memcheck: false | |
- os: ubuntu-22.04 | |
fcompiler: gfortran-11 | |
ccompiler: gcc-11 | |
gcov: gcov-11 | |
spack_compiler: gcc@=11.4.0 | |
spack_os: "ubuntu:22.04" | |
shell: bash | |
build_type: release | |
memcheck: false | |
defaults: | |
run: | |
shell: ${{ matrix.shell }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Show version information | |
run: | | |
${{ matrix.fcompiler }} --version | |
${{ matrix.ccompiler }} --version | |
- name: Set up Spack | |
uses: spack/setup-spack@v2 | |
with: | |
ref: develop-2024-10-06 | |
- name: Install dependencies in spack environment | |
run: | | |
spack -e ./share/spack-env/ mirror set --oci-username ${{ github.actor }} --oci-password "${{ secrets.GITHUB_TOKEN }}" local-buildcache | |
spack -e ./share/spack-env/ compiler find | |
spack -e ./share/spack-env/ external find --not-buildable | |
spack -e ./share/spack-env/ config add packages:feq-parse:require:["'%${{ matrix.spack_compiler }}'"] | |
spack -e ./share/spack-env/ config add packages:hdf5:require:["'%${{ matrix.spack_compiler }}'"] | |
spack -e ./share/spack-env/ config add packages:openmpi:require:["'%${{ matrix.spack_compiler }}'"] | |
spack -e ./share/spack-env/ concretize -f | |
spack -e ./share/spack-env/ install --no-check-signature | |
- name: Build with Cmake | |
shell: spack-bash {0} | |
run: | | |
spack env activate ./share/spack-env/ | |
mkdir build | |
cd build | |
FC=${{ matrix.fcompiler }} CC=${{ matrix.ccompiler }} \ | |
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ | |
-DSELF_ENABLE_MULTITHREADING=ON \ | |
-DSELF_MULTITHREADING_NTHREADS=4 \ | |
-DSELF_MPIEXEC_NUMPROCS=2 \ | |
../ | |
make VERBOSE=1 | |
- name: Run ctests | |
run: | | |
export WORKSPACE=/home/runner/work/SELF/SELF/ | |
ctest --verbose \ | |
--output-on-failure \ | |
--test-dir ./build/ | |
- name: codecov | |
if: ${{ matrix.build_type == 'coverage' }} | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
files: /home/runner/work/lcov.info | |
flags: github-serial-ctests | |
- name: Run memory checks with Valgrind (only Linux and GNU compilers) | |
if: ${{ matrix.memcheck }} | |
run: | | |
sudo apt-get install -y valgrind | |
for f in $(find ./build/test/ -executable -type f) | |
do | |
echo $f | |
valgrind --undef-value-errors=no --error-exitcode=1 -s $f -A | |
done | |
- name: Push packages and update index | |
run: | | |
spack -e ./share/spack-env/ mirror set --push --oci-username ${{ github.actor }} --oci-password "${{ secrets.GITHUB_TOKEN }}" local-buildcache | |
spack -e ./share/spack-env/ buildcache push --base-image ${{ matrix.spack_os }} --update-index local-buildcache | |
if: ${{ !cancelled() }} | |