Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
coverage:
strict_yaml_branch: default
max_report_age: off
status:
project:
default:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
- name: Setup Ubuntu
run: |
sudo apt update -y
sudo apt install -y tar wget make cmake gcc g++ python3 python3-dev "openmpi-*" libopenmpi-dev libblas-dev liblapack-dev
sudo apt install -y tar wget make cmake gcc g++ python3 \
python3-dev "openmpi-*" libopenmpi-dev hdf5-tools \
libfftw3-dev libhdf5-dev libblas-dev liblapack-dev

- name: Build
run: /bin/bash mfc.sh build -j $(nproc) --gcov
Expand Down
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ if (CMAKE_Fortran_COMPILER_ID STREQUAL "GNU")
add_compile_options(
$<$<COMPILE_LANGUAGE:Fortran>:-fprofile-arcs>
$<$<COMPILE_LANGUAGE:Fortran>:-ftest-coverage>
$<$<COMPILE_LANGUAGE:Fortran>:-O1>
)

add_link_options(
Expand Down Expand Up @@ -360,6 +361,8 @@ macro(HANDLE_SOURCES target useCommon)
-D chemistry=False
--line-numbering
--no-folding
--line-length=999
--line-numbering-mode=nocontlines
"${fpp}" "${f90}"
DEPENDS "${fpp};${${target}_incs}"
COMMENT "Preprocessing (Fypp) ${fpp_filename}"
Expand Down
Loading