File tree 1 file changed +0
-15
lines changed
1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,6 @@ commandOut = shell.exec('source ./npm/package/require_clean_work_tree.sh');
21
21
if ( commandOut . code !== 0 ) {
22
22
shell . exit ( 1 ) ;
23
23
}
24
- /* commandOut = shell.exec('require_clean_work_tree "create package"');
25
- if (commandOut.code !== 0) {
26
- console.log('Working tree is not clean, please commit/stash your changes');
27
- shell.exit(1);
28
- } */
29
24
30
25
getSubfolders = ( folder ) => {
31
26
return fs . readdirSync ( folder )
@@ -37,16 +32,6 @@ individual_test = (codegen) => {
37
32
38
33
console . log ( `Creating package for ${ codegen } ` ) ;
39
34
async . series ( [
40
- function ( next ) {
41
- console . log ( `Running deepinstall for codegen ${ codegen } ` ) ;
42
- commandOut = shell . exec ( `npm run deepinstall ${ codegen } --color always` , { silent : true } ) ;
43
- if ( commandOut . code !== 0 ) {
44
- console . error ( `Failed to run deepinstall on codegen ${ codegen } , here\'s the error:` ) ;
45
- return next ( commandOut . stderr ) ;
46
- }
47
- console . log ( commandOut . stdout ) ;
48
- return next ( ) ;
49
- } ,
50
35
function ( next ) {
51
36
console . log ( `Running codegen test for codegen ${ codegen } ` ) ;
52
37
commandOut = shell . exec ( `npm run test ${ codegen } --color always` , { silent : true } ) ;
You can’t perform that action at this time.
0 commit comments