Skip to content
Draft
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
3 changes: 1 addition & 2 deletions .github/workflows/early_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ jobs:
cxx_version: '23'
runs-on: ubuntu-latest
needs: [docker-build]
permissions:
checks: write # Required by mikepenz/action-junit-report
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
Expand Down Expand Up @@ -223,4 +221,5 @@ jobs:
uses: mikepenz/action-junit-report@3585e9575db828022551b4231f165eb59a0e74e3 # v5.6.2
if: ( success() || failure() ) && steps.test.outputs.with_report == 'true' # always run even if the previous step fails
with:
annotate_only: true # forked repo cannot write to checks so just do annotations
report_paths: '${{github.workspace}}/tests.xml'
3 changes: 1 addition & 2 deletions .github/workflows/tests-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ jobs:
CC: ${{matrix.backend.c_compiler}}
CXX: ${{matrix.backend.cxx_compiler}}
CMAKE_BUILD_TYPE: ${{matrix.cmake_build_type}}
permissions:
checks: write # Required by mikepenz/action-junit-report
steps:
- name: Checkout built branch
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand Down Expand Up @@ -204,6 +202,7 @@ jobs:
uses: mikepenz/action-junit-report@3585e9575db828022551b4231f165eb59a0e74e3 # v5.6.2
if: ( success() || failure() ) # always run even if the previous step fails
with:
annotate_only: true # forked repo cannot write to checks so just do annotations
report_paths: '${{github.workspace}}/build/tests.xml'
- name: Run examples
run: |
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/tests-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,6 @@ jobs:
cxx_version: '23'
runs-on: ubuntu-latest
needs: [docker-build, id_repo]
permissions:
checks: write # Required by mikepenz/action-junit-report
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
Expand Down Expand Up @@ -347,7 +345,7 @@ jobs:
cmake --build build
if [ 'xcpu' = 'x${{matrix.backend.name}}' ]
then
ctest --test-dir build --output-on-failure --timeout 10 --output-junit tests.xml
ctest --test-dir build --output-on-failure --timeout 20 --output-junit tests.xml
cp build/tests.xml .
./build/examples/characteristics_advection
./build/examples/game_of_life
Expand Down Expand Up @@ -381,6 +379,7 @@ jobs:
uses: mikepenz/action-junit-report@3585e9575db828022551b4231f165eb59a0e74e3 # v5.6.2
if: ( success() || failure() ) && steps.test.outputs.with_report == 'true' # always run even if the previous step fails
with:
annotate_only: true # forked repo cannot write to checks so just do annotations
report_paths: '${{github.workspace}}/tests.xml'

test-with-sanitizer:
Expand All @@ -398,8 +397,6 @@ jobs:
sanitizer: ['address', 'undefined']
runs-on: ubuntu-latest
needs: [docker-build, id_repo]
permissions:
checks: write # Required by mikepenz/action-junit-report
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
Expand Down Expand Up @@ -457,7 +454,7 @@ jobs:
. /src/sanitizer_env.sh
fi

ctest --test-dir build --output-on-failure --timeout 10 --output-junit tests.xml
ctest --test-dir build --output-on-failure --timeout 20 --output-junit tests.xml
cp build/tests.xml .
./build/examples/characteristics_advection
./build/examples/game_of_life
Expand All @@ -483,6 +480,7 @@ jobs:
uses: mikepenz/action-junit-report@3585e9575db828022551b4231f165eb59a0e74e3 # v5.6.2
if: ( success() || failure() ) && steps.test.outputs.with_report == 'true' # always run even if the previous step fails
with:
annotate_only: true # forked repo cannot write to checks so just do annotations
report_paths: '${{github.workspace}}/tests.xml'

clang-tidy-test:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/tests-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ jobs:
Kokkos_ROOT: ${{github.workspace}}/opt/kokkos
GTest_ROOT: ${{github.workspace}}/opt/gtest
CMAKE_BUILD_PARALLEL_LEVEL: 4
permissions:
checks: write # Required by mikepenz/action-junit-report
steps:
- name: Checkout built branch
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand Down Expand Up @@ -113,6 +111,7 @@ jobs:
uses: mikepenz/action-junit-report@3585e9575db828022551b4231f165eb59a0e74e3 # v5.6.2
if: ( success() || failure() ) # always run even if the previous step fails
with:
annotate_only: true # forked repo cannot write to checks so just do annotations
report_paths: '${{github.workspace}}/build/tests.xml'
- name: Run examples
shell: bash
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,10 @@ if("${DDC_BUILD_KERNELS_SPLINES}")
include/ddc/kernels/splines/spline_boundary_conditions.hpp
include/ddc/kernels/splines/spline_builder.hpp
include/ddc/kernels/splines/spline_builder_2d.hpp
include/ddc/kernels/splines/spline_builder_3d.hpp
include/ddc/kernels/splines/spline_evaluator.hpp
include/ddc/kernels/splines/spline_evaluator_2d.hpp
include/ddc/kernels/splines/spline_evaluator_3d.hpp
include/ddc/kernels/splines/spline_traits.hpp
include/ddc/kernels/splines/splines_linear_problem.hpp
include/ddc/kernels/splines/splines_linear_problem_2x2_blocks.hpp
Expand Down
2 changes: 2 additions & 0 deletions include/ddc/kernels/splines.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
#include "splines/spline_boundary_conditions.hpp"
#include "splines/spline_builder.hpp"
#include "splines/spline_builder_2d.hpp"
#include "splines/spline_builder_3d.hpp"
#include "splines/spline_evaluator.hpp"
#include "splines/spline_evaluator_2d.hpp"
#include "splines/spline_evaluator_3d.hpp"
#include "splines/spline_traits.hpp"
#include "splines/splines_linear_problem.hpp"
#include "splines/splines_linear_problem_2x2_blocks.hpp"
Expand Down
Loading