File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -75,10 +75,16 @@ jobs:
7575 cd build
7676 cmake ..
7777 cmake --build .
78- - name : Test built example executable
78+ - name : Test built example executable (Unix)
79+ if : matrix.os != 'windows-latest'
7980 run : |
8081 cd tests
8182 ./external/build/example
83+ - name : Test built example executable (Windows)
84+ if : matrix.os == 'windows-latest'
85+ run : |
86+ cd tests
87+ ./external/build/Debug/example
8288 - name : Check built example executable output
8389 run : |
8490 python scripts/devtasks.py compare-files tests/example_output.data --driver 4
Original file line number Diff line number Diff line change 11include (CMakeFindDependencyMacro)
22list (APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR} )
33find_dependency(Boost REQUIRED COMPONENTS regex )
4- find_dependency(Sundials REQUIRED)
4+ find_dependency(SUNDIALS REQUIRED COMPONENTS kinsol cvode )
55include (${CMAKE_CURRENT_LIST_DIR} /ePhotosynthesisTargets.cmake)
66set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} CACHE INTERNAL "CMAKE_MODULE_PATH" )
You can’t perform that action at this time.
0 commit comments