我正在尝试使用grunt在Jenkins(奴隶)中构建我的实习生考试。 grunt文件执行某些功能,其中一个功能失败。这就是grunt文件的样子。这些是实习测试。我得到的错误是因为它无法启动示例。 jenkins控制台中的错误
[4mRunning "unzip:sample" (unzip) task[24m
Created "./sample" directory
[4mRunning "exec:start-sample" (exec) task[24m
[31m>> [39mFailed with: Error: spawn C:\Windows\system32\cmd.exe ENOENT
[33mWarning: Task "exec:start-sample" failed. Use --force to continue.[39m
这是没有错误的控制台
[4mRunning "unzip:sample" (unzip) task[24m
Created "./sample" directory
[4mRunning "exec:start-sample" (exec) task[24m
[4mRunning "wait:45" (wait) task[24m
GruntFile.js
module.exports = function(grunt) {
grunt.initConfig({
exec: {
'start-sample': {
cmd: 'start serverstart.exe -z ../../sample',
cwd: '../../WEB-INF/bin64'
},
'stop-sample' : {
cmd: 'start serverstop.exe -n "Sample" -user abc -pwd abc',
cwd: '../../WEB-INF/bin64'
}
},
unzip: {
'sample' : {
src : '../../sample.zip',
dest : './sample'
}
}
}