无法在詹金斯中生成脚本文件

Unable to produce a script file in jenkins

我正在使用 jenkins 定期构建我的 node.js 应用程序。每当我尝试构建我的应用程序时,我都会在控制台输出中得到这个

Started by user anonymous
Building in workspace /Users/Shared/Jenkins/Home/workspace
FATAL: Unable to produce a script file
java.io.IOException: Failed to create a temp file on /Users/Shared/Jenkins/Home/workspace
 at hudson.FilePath.createTextTempFile(FilePath.java:1383)
 at jenkins.plugins.nodejs.NodeJsCommandInterpreter.createScriptFile(NodeJsCommandInterpreter.java:108)
 at jenkins.plugins.nodejs.NodeJsCommandInterpreter.perform(NodeJsCommandInterpreter.java:57)
 at jenkins.plugins.nodejs.NodeJsCommandInterpreter.perform(NodeJsCommandInterpreter.java:42)
 at hudson.tasks.BuildStepMonitor.perform(BuildStepMonitor.java:20)
 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:785)
 at hudson.model.Build$BuildExecution.build(Build.java:205)
 at hudson.model.Build$BuildExecution.doRun(Build.java:162)
 at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:537)
 at hudson.model.Run.execute(Run.java:1741)
 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
 at hudson.model.ResourceController.execute(ResourceController.java:98)
 at hudson.model.Executor.run(Executor.java:410)
Caused by: java.io.IOException: Failed to create a temporary directory in /Users/Shared/Jenkins/tmp
 at hudson.FilePath.invoke(FilePath.java:1369)
 at hudson.FilePath.invoke(FilePath.java:1357)
 at hudson.FilePath.act(FilePath.java:991)
 at hudson.FilePath.act(FilePath.java:969)
 at hudson.FilePath.createTextTempFile(FilePath.java:1357)
 ... 12 more
Caused by: java.io.IOException: Permission denied
 at java.io.UnixFileSystem.createFileExclusively(Native Method)
 at java.io.File.createTempFile(File.java:2024)
 at hudson.FilePath.invoke(FilePath.java:1367)
 ... 16 more
Build step 'Execute NodeJS script' marked build as failure
Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered
Triggering a new build of job2
Triggering a new build of job2
Finished: FAILURE

这可能是什么原因? 谢谢!

检查脚本试图在其中创建新文件/文件夹的文件夹的权限。 原因可能是您 运行 使用构建脚本的用户没有在该目录中创建新文件的权限。

除了检查权限外,还要确保您尝试保存 logs/execute 您的 jenkins 作业的机器上有空闲 space。

/tmp 文件夹存在权限问题。给定 /tmp 用户访问权限对我有效。