File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 97
97
- store_artifacts :
98
98
path : build
99
99
100
+ test-image2 :
101
+ docker :
102
+ - image : plotly/testbed:latest
103
+ working_directory : /var/www/streambed/image_server/plotly.js/
104
+ steps :
105
+ - checkout
106
+ - attach_workspace :
107
+ at : /var/www/streambed/image_server/plotly.js/
108
+ - run :
109
+ name : Run and setup container
110
+ command : |
111
+ supervisord &
112
+ npm run docker -- setup
113
+ - run :
114
+ name : Run image tests
115
+ command : ./.circleci/test.sh image2
116
+ - store_artifacts :
117
+ path : build
118
+
100
119
test-syntax :
101
120
docker :
102
121
- image : circleci/node:8.9.4
@@ -123,6 +142,9 @@ workflows:
123
142
- test-image :
124
143
requires :
125
144
- build
145
+ - test-image2 :
146
+ requires :
147
+ - build
126
148
- test-syntax :
127
149
requires :
128
150
- build
Original file line number Diff line number Diff line change @@ -41,6 +41,10 @@ case $1 in
41
41
42
42
image)
43
43
npm run test-image || EXIT_STATE=$?
44
+ exit $EXIT_STATE
45
+ ;;
46
+
47
+ image2)
44
48
npm run test-export || EXIT_STATE=$?
45
49
npm run test-image-gl2d || EXIT_STATE=$?
46
50
exit $EXIT_STATE
You can’t perform that action at this time.
0 commit comments