-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathconfig.yml
59 lines (53 loc) · 1.49 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
build-settings: &build-settings
working_directory: /usr/src/SlicerExecutionModel
version: 2
jobs:
itk-v4.8.0_use_system_libraries-off:
<<: *build-settings
docker:
- image: slicer/slicerexecutionmodel:${CIRCLE_JOB}
steps:
- checkout
- run:
command: ./test/Docker/test.sh ${CIRCLE_JOB}
# ITK v4.10.1
itk-v4.10.1_use_system_libraries-off:
<<: *build-settings
docker:
- image: slicer/slicerexecutionmodel:${CIRCLE_JOB}
steps:
- checkout
- run:
command: ./test/Docker/test.sh ${CIRCLE_JOB}
- run:
command: ./test/Docker/test-serializer.sh ${CIRCLE_JOB}
# ITK v4.13.0
itk-v4.13.0_use_system_libraries-off:
<<: *build-settings
docker:
- image: slicer/slicerexecutionmodel:${CIRCLE_JOB}
steps:
- checkout
- run:
command: ./test/Docker/test.sh ${CIRCLE_JOB}
- run:
command: ./test/Docker/test-serializer.sh ${CIRCLE_JOB}
# ITK master
itk-master_use_system_libraries-off:
<<: *build-settings
docker:
- image: slicer/slicerexecutionmodel:${CIRCLE_JOB}
steps:
- checkout
- run:
command: ./test/Docker/test.sh ${CIRCLE_JOB}
- run:
command: ./test/Docker/test-serializer.sh ${CIRCLE_JOB}
workflows:
version: 2
build-test:
jobs:
- itk-v4.8.0_use_system_libraries-off
- itk-v4.10.1_use_system_libraries-off
- itk-v4.13.0_use_system_libraries-off
- itk-master_use_system_libraries-off