Skip to content

Commit 01562c1

Browse files
committed
Merge pull request #9 from thewtex/CircleCI
ENH: Add CircleCI configuration.
2 parents ed29f8d + 139e985 commit 01562c1

File tree

3 files changed

+46
-1
lines changed

3 files changed

+46
-1
lines changed

README.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
ITKMinimalPathExtraction
2+
========================
3+
4+
.. image:: https://circleci.com/gh/InsightSoftwareConsortium/ITKMinimalPathExtraction.svg?style=svg
5+
:target: https://circleci.com/gh/InsightSoftwareConsortium/ITKMinimalPathExtraction
6+
7+
This is an `ITK <http://itk.org>`_ module that implements a minimal path
8+
extraction framework based on Fast Marching arrival functions.
9+
10+
A more detailed description can be found in
11+
`the Insight Journal article <http://hdl.handle.net/1926/1332>`_::
12+
13+
Mueller, D. "Fast Marching Minimal Path Extraction in ITK"
14+
http://hdl.handle.net/1926/1332
15+
http://www.insight-journal.org/browse/publication/213
16+
March, 2008.
17+
18+
Since ITK 4.8.0, this module is available in the ITK source tree as a Remote
19+
module. To enable it, set::
20+
21+
Module_MinimalPathExtraction:BOOL=ON
22+
23+
in ITK's CMake build configuration.

circle.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
machine:
2+
services:
3+
- docker
4+
5+
dependencies:
6+
override:
7+
- docker info
8+
- docker pull insighttoolkit/minimalpathextraction-test
9+
10+
test:
11+
override:
12+
- mkdir ~/ITKMinimialPathExtraction-build
13+
- docker run -v ~/ITKMinimalPathExtraction:/usr/src/ITKMinimalPathExtraction -v ~/ITKMinimalPathExtraction-build:/usr/src/ITKMinimalPathExtraction-build insighttoolkit/minimalpathextraction-test /usr/src/ITKMinimalPathExtraction/test/Docker/test.sh
14+

itk-module.cmake

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
set(DOCUMENTATION "http://www.insight-journal.org/browse/publication/213
1+
set(DOCUMENTATION "This module implements a minimal path extraction framework
2+
based on Fast Marching arrival functions.
3+
4+
A more detailed description can be found in the Insight Journal article::
5+
6+
Mueller, D. "Fast Marching Minimal Path Extraction in ITK"
7+
http://hdl.handle.net/1926/1332
8+
http://www.insight-journal.org/browse/publication/213
9+
March, 2008.
210
")
311

412
itk_module(MinimalPathExtraction

0 commit comments

Comments
 (0)