Skip to content

Commit 48d9208

Browse files
committed
ci: Transition to CircleCI v2.0
1 parent d6830a4 commit 48d9208

File tree

2 files changed

+46
-37
lines changed

2 files changed

+46
-37
lines changed

.circleci/config.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
build-settings: &build-settings
2+
working_directory: /usr/src
3+
4+
version: 2
5+
jobs:
6+
itk-v4.8.0_use_system_libraries-off:
7+
<<: *build-settings
8+
docker:
9+
- image: slicer/slicerexecutionmodel:itk-v4.8.0_use_system_libraries-off
10+
steps:
11+
- checkout
12+
- run:
13+
name: Configure, build and test
14+
command: |
15+
./SlicerExecutionModel/test/Docker/test.sh itk-v4.8.0_use_system_libraries-off
16+
17+
itk-v4.10.1_use_system_libraries-off:
18+
<<: *build-settings
19+
docker:
20+
- image: slicer/slicerexecutionmodel:itk-v4.10.1_use_system_libraries-off
21+
steps:
22+
- checkout
23+
- run:
24+
name: Configure, build and test
25+
command: |
26+
./SlicerExecutionModel/Docker/test.sh itk-v4.8.0_use_system_libraries-off
27+
28+
29+
itk-v4.10.1_use_system_libraries-off_serializer:
30+
<<: *build-settings
31+
docker:
32+
- image: slicer/slicerexecutionmodel:itk-v4.10.1_use_system_libraries-off
33+
steps:
34+
- checkout
35+
- run:
36+
name: Configure, build and test
37+
command: |
38+
./SlicerExecutionModel/Docker/test-serializer.sh itk-v4.10.1_use_system_libraries-off
39+
40+
workflows:
41+
version: 2
42+
build-test:
43+
jobs:
44+
- itk-v4.8.0_use_system_libraries-off
45+
- itk-v4.10.1_use_system_libraries-off
46+
- itk-v4.10.1_use_system_libraries-off_serializer

circle.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)