-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1255 from DLR-AMR/feature-fortran-interface
Build Fortran interface: autotools & CMake
- Loading branch information
Showing
15 changed files
with
661 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
name: CMake tests t8code api | ||
|
||
|
||
# This file is part of t8code. | ||
# t8code is a C library to manage a collection (a forest) of multiple | ||
# connected adaptive space-trees of general element types in parallel. | ||
# | ||
# Copyright (C) 2024 the developers | ||
# | ||
# t8code is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# t8code is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with t8code; if not, write to the Free Software Foundation, Inc., | ||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
MAKEFLAGS: | ||
required: true | ||
type: string | ||
description: 'Make flags to use for compilation (like -j4)' | ||
MPI: | ||
required: true | ||
type: string | ||
description: 'Use MPI for compilation (ON/OFF)' | ||
BUILD_TYPE: | ||
required: true | ||
type: string | ||
description: 'Build type (Release/Debug)' | ||
LESS_TESTS: | ||
required: true | ||
type: boolean | ||
description: 'Enable less tests option for configuring' | ||
|
||
jobs: | ||
t8code_cmake_tests: | ||
timeout-minutes: 30 | ||
runs-on: ubuntu-latest | ||
container: dlramr/t8code-ubuntu:t8-dependencies | ||
steps: | ||
# | ||
# Setup | ||
# | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: SC_P4EST_MPI_${{ inputs.MPI }} | ||
- name: untar artifact | ||
run: tar -xf artifact.tar && rm artifact.tar | ||
- name: Update packages | ||
run: apt-get update && apt-get upgrade -y | ||
# This seems to be necessary because of the docker container | ||
- name: disable ownership checks | ||
run: git config --global --add safe.directory '*' | ||
- name: Get input vars | ||
run: export MAKEFLAGS="${{ inputs.MAKEFLAGS }}" | ||
&& export MPI="${{ inputs.MPI }}" | ||
&& export BUILD_TYPE="${{ inputs.BUILD_TYPE }}" | ||
&& export SC_PATH=$PWD/sc/build/$BUILD_TYPE | ||
&& export P4EST_PATH=$PWD/p4est/build/$BUILD_TYPE | ||
&& echo MAKEFLAGS="$MAKEFLAGS" >> $GITHUB_ENV | ||
&& echo MPI="$MPI" >> $GITHUB_ENV | ||
&& echo BUILD_TYPE="$BUILD_TYPE" >> $GITHUB_ENV | ||
&& echo SC_PATH="$SC_PATH" >> $GITHUB_ENV | ||
&& echo P4EST_PATH="$P4EST_PATH" >> $GITHUB_ENV | ||
# | ||
# T8CODE | ||
# | ||
# | ||
# build config vars | ||
- name: less-test option | ||
if: ${{ inputs.LESS_TESTS }} | ||
run: export LESS_TEST_OPTION="-DT8CODE_ENABLE_LESS_TESTS=ON" | ||
&& echo LESS_TEST_OPTION="$LESS_TEST_OPTION" >> $GITHUB_ENV | ||
- name: build config variables | ||
run: export CONFIG_OPTIONS="${LESS_TEST_OPTION} -GNinja -DT8CODE_USE_SYSTEM_SC=ON -DT8CODE_USE_SYSTEM_P4EST=ON -DT8CODE_BUILD_PEDANTIC=ON -DT8CODE_ENABLE_MPI=$MPI -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DSC_DIR=$SC_PATH/install/cmake -DP4EST_DIR=$P4EST_PATH/install/cmake" | ||
&& echo CONFIG_OPTIONS="$CONFIG_OPTIONS" >> $GITHUB_ENV | ||
# cmake and test with fortran | ||
- name: check fortran | ||
run: echo "Checking fortran" | ||
- name: echo cmake line | ||
run: echo cmake ../ $CONFIG_OPTIONS -DT8CODE_BUILD_FORTRAN_INTERFACE=ON | ||
- name: cmake MPI fortran debug | ||
run: mkdir build_fortran && cd build_fortran && cmake ../ $CONFIG_OPTIONS -DT8CODE_ENABLE_FORTRAN=ON | ||
- name: OnFailUploadLog | ||
if: failure() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: cmake_${{ inputs.BUILD_TYPE }}_MPI_${{ inputs.MPI }}_fortran.log | ||
path: build_fortran/CMakeFiles/CMakeOutput.log | ||
- name: make | ||
run: cd build_fortran && ninja $MAKEFLAGS | ||
- name: ninja install | ||
run: cd build_fortran && ninja install $MAKEFLAGS | ||
- name: ninja test | ||
run: cd build_fortran && ninja test | ||
- name: OnFailUploadLog | ||
if: failure() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: test-suite_${{ inputs.BUILD_TYPE }}_MPI_${{ inputs.MPI }}_fortran.log | ||
path: build_fortran/Testing/Temporary/LastTest.log |
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Link in C-Fortran interface file into libt8. | ||
target_sources( T8 PRIVATE t8_fortran_interface.c ) | ||
target_sources( T8 PRIVATE t8_fortran_interface_mod.f90 ) | ||
|
||
# Add this directory to header search path. | ||
target_include_directories( T8 PRIVATE ${CMAKE_CURRENT_LIST_DIR} ) | ||
|
||
# Install header files. | ||
install( | ||
FILES ${CMAKE_CURRENT_LIST_DIR}/t8_fortran_interface.h | ||
DESTINATION ${CMAKE_INSTALL_PREFIX}/include/t8_fortran_interface | ||
) | ||
|
||
# Install module files. | ||
install( | ||
FILES ${CMAKE_BINARY_DIR}/src/t8_fortran_interface_mod.mod | ||
DESTINATION ${CMAKE_INSTALL_PREFIX}/include/t8_fortran_interface | ||
) |
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
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
Oops, something went wrong.