File tree Expand file tree Collapse file tree 2 files changed +124
-91
lines changed
src/Registration/Common/MutualInformation Expand file tree Collapse file tree 2 files changed +124
-91
lines changed Original file line number Diff line number Diff line change @@ -250,6 +250,47 @@ jobs:
250
250
ctest -j 2 -VV -S dashboard.cmake
251
251
shell : cmd
252
252
253
+ build-test-notebooks :
254
+ runs-on : ${{ matrix.os }}
255
+ strategy :
256
+ max-parallel : 3
257
+ matrix :
258
+ os : [ubuntu-18.04, windows-2019, macos-10.15]
259
+ include :
260
+ - os : ubuntu-18.04
261
+ c-compiler : " gcc"
262
+ cxx-compiler : " g++"
263
+ itk-git-tag : " v5.2rc02"
264
+ cmake-build-type : " MinSizeRel"
265
+ - os : windows-2019
266
+ c-compiler : " cl.exe"
267
+ cxx-compiler : " cl.exe"
268
+ itk-git-tag : " v5.2rc02"
269
+ cmake-build-type : " Release"
270
+ - os : macos-10.15
271
+ c-compiler : " clang"
272
+ cxx-compiler : " clang++"
273
+ itk-git-tag : " v5.2rc02"
274
+ cmake-build-type : " MinSizeRel"
275
+
276
+ steps :
277
+ - uses : actions/checkout@v1
278
+ - name : Set up Python 3.7
279
+ uses : actions/setup-python@v1
280
+ with :
281
+ python-version : 3.7
282
+
283
+ - name : Install build dependencies
284
+ run : |
285
+ python -m pip install --upgrade pip
286
+ python -m pip install ninja
287
+ python -m pip install itk==5.2rc02
288
+ python -m pip install matplotlib
289
+ python -m pip install itkwidgets
290
+
291
+ - name : Test notebooks
292
+ uses : treebeardtech/nbmake-action@v0.2.1
293
+
253
294
build-test-documentation :
254
295
runs-on : ${{ matrix.os }}
255
296
strategy :
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments