Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libmtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
icon-libraries
libmtime
Commits
253ff439
Commit
253ff439
authored
2 months ago
by
Sergey Kosukhin
Browse files
Options
Downloads
Patches
Plain Diff
cmake: run examples as tests
parent
a6ea1619
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!75
Build and run examples as tests
Pipeline
#96264
passed
1 month ago
Stage: test
Stage: deploy
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+0
-1
0 additions, 1 deletion
.gitlab-ci.yml
CMakeLists.txt
+1
-5
1 addition, 5 deletions
CMakeLists.txt
examples/CMakeLists.txt
+2
-0
2 additions, 0 deletions
examples/CMakeLists.txt
with
3 additions
and
6 deletions
.gitlab-ci.yml
+
0
−
1
View file @
253ff439
...
...
@@ -358,7 +358,6 @@ Generate HTML pages:
-DCMAKE_Fortran_COMPILER=gfortran
-DBUILD_TESTING:BOOL=OFF
-DMTIME_ENABLE_PYTHON:BOOL=OFF
-DMTIME_BUILD_EXAMPLES:BOOL=OFF
-DMTIME_BUILD_DOCS:BOOL=ON
-DDOXYGEN_GENERATE_LATEX:BOOL=OFF
-DDOXYGEN_GENERATE_MAN:BOOL=OFF
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
5
View file @
253ff439
...
...
@@ -15,7 +15,6 @@ option(BUILD_SHARED_LIBS "Build shared libraries" ON)
option
(
BUILD_TESTING
"Build tests"
ON
)
option
(
MTIME_ENABLE_PYTHON
"Enable the Python interface"
OFF
)
option
(
MTIME_BUILD_EXAMPLES
"Build examples"
ON
)
option
(
MTIME_BUILD_DOCS
"Build documentation"
OFF
)
list
(
APPEND CMAKE_MODULE_PATH
${
PROJECT_SOURCE_DIR
}
/cmake
)
...
...
@@ -47,12 +46,9 @@ if(MTIME_BUILD_DOCS)
add_subdirectory
(
doc
)
endif
()
if
(
MTIME_BUILD_EXAMPLES
)
add_subdirectory
(
examples
)
endif
()
include
(
CTest
)
if
(
BUILD_TESTING
)
add_subdirectory
(
examples
)
add_subdirectory
(
test
)
else
()
# Allow for 'make test' even if the tests are disabled:
...
...
This diff is collapsed.
Click to expand it.
examples/CMakeLists.txt
+
2
−
0
View file @
253ff439
...
...
@@ -23,6 +23,7 @@ set(examples_Fortran
foreach
(
example IN LISTS examples_Fortran
)
add_executable
(
${
example
}
${
example
}
.f90
)
add_test
(
NAME
${
example
}
COMMAND
${
example
}
)
endforeach
()
set
(
examples_C
...
...
@@ -34,6 +35,7 @@ set(examples_C
foreach
(
example IN LISTS examples_C
)
add_executable
(
${
example
}
${
example
}
.c
)
add_test
(
NAME
${
example
}
COMMAND
${
example
}
)
endforeach
()
# Additional sources of the example executables:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment