File tree Expand file tree Collapse file tree 3 files changed +32
-9
lines changed Expand file tree Collapse file tree 3 files changed +32
-9
lines changed Original file line number Diff line number Diff line change
1
+ echo " Building slug"
2
+ id=$( git archive $CIRCLE_BRANCH | docker run -e " NPM_CONFIG_PRODUCTION=false" -i -a stdin elasticio/appbuilder)
3
+ docker attach $id
4
+ RC=$?
5
+ if [ $RC -eq 0 ]; then
6
+ echo " Build ok."
7
+ else
8
+ echo " Build failed"
9
+ exit 1
10
+ fi
Original file line number Diff line number Diff line change
1
+ machine :
2
+ services :
3
+ - docker
4
+
5
+ dependencies :
6
+ override :
7
+ - docker pull elasticio/appbuilder
8
+
9
+ test :
10
+ override :
11
+ - chmod 700 .circleci/build_slug.sh
12
+ - .circleci/build_slug.sh
13
+
Original file line number Diff line number Diff line change 20
20
"bugs" : {
21
21
"url" : " https://github.com/elasticio/csv-component/issues"
22
22
},
23
- "devDependencies" : {
24
- "code-quality-js" : " git+https://github.com/elasticio/code-quality-js.git#master" ,
25
- "git-guppy" : " ~1.0.0" ,
26
- "gulp" : " ^3.8.11" ,
27
- "gulp-jasmine" : " ^2.0.1" ,
28
- "gulp-jscs" : " ~1.6.0" ,
29
- "nock" : " ^2.17.0"
30
- },
31
23
"homepage" : " https://github.com/elasticio/csv-component#readme" ,
32
24
"dependencies" : {
33
25
"csv" : " ^0.4.6" ,
34
26
"debug" : " ^2.2.0" ,
35
27
"elasticio-node" : " 0.0.7" ,
36
- "elasticio-sailor-nodejs" : " ^1.0.1 " ,
28
+ "elasticio-sailor-nodejs" : " 1.1.0 " ,
37
29
"moment" : " ^2.10.6" ,
38
30
"node-uuid" : " ^1.4.3" ,
39
31
"q" : " ^1.4.1" ,
40
32
"request" : " ^2.65.0" ,
41
33
"underscore" : " ^1.8.3"
34
+ },
35
+ "devDependencies" : {
36
+ "code-quality-js" : " 1.0.2" ,
37
+ "git-guppy" : " ~1.0.0" ,
38
+ "gulp" : " ^3.8.11" ,
39
+ "gulp-jasmine" : " ^2.0.1" ,
40
+ "gulp-jscs" : " ~1.6.0" ,
41
+ "nock" : " ^2.17.0"
42
42
}
43
43
}
You can’t perform that action at this time.
0 commit comments