我刚刚在 Jenkins 1.526 上安装了 NodeJS 插件
https://wiki.jenkins-ci.org/display/JENKINS/NodeJS+Plugin
但是在主配置上,NodeJS 自动安装程序没有出现,这个插件是否过时了?
我刚刚在 Jenkins 1.526 上安装了 NodeJS 插件
https://wiki.jenkins-ci.org/display/JENKINS/NodeJS+Plugin
但是在主配置上,NodeJS 自动安装程序没有出现,这个插件是否过时了?
对我有用,但我必须重新启动服务器才能显示该选项
我在这里看到了这个选项:/jenkins/configure
我的步骤:
a)正常安装
https://wiki.jenkins-ci.org/display/JENKINS/NodeJS+Plugin
b) 然后你去配置页面
/jenkins/configure
c) NodeJS 选项应该在 maven/git 和 ant 安装选项下
d) 创建 NodeJS 安装
NodeJS-> NodeJS 安装 -> 添加 NodeJS -> Name = "NodeJS 0.11.10",勾选“自动安装”,选择“从 nodejs.org 安装”,将“grunt-cli”添加到全局安装的包中
e) 创建一个作业,nodejs shell 应该可以作为构建任务“执行 NodeJS 脚本”使用
例如,为一个简单的 hello world 示例执行此操作,在 jenkins 作业输出中使用 echo hello world
var sys = require('sys');
sys.puts('NodeJS Test');
sys.puts('***************');
sys.puts('helloworld');
禁用 JENKINS_HOME/configureSecurity “跨站请求伪造”攻击检查