赞
踩
[Jenkins] 局域网无法根据 ip 访问 jenkins - 简书
修改完之后 要重启Jenkins
brew services restart jenkins-lts
Unity - Manual: Unity Editor command line arguments
1.mac 上Jenkins 的unity 安装目录
/Applications/Unity/Hub/Editor/2019.4.30f1c2/Unity.app 在系统设置-全局变量下设置
2.在命令行中引用 Jenkins 参数
mac 下${parm} ,windows 下 %parm%
-projectPath ${workPath} -quit -batchmode -executeMethod EditorTool.JenkinsTest
如果后面加参数,直接 参数名=${参数名} 比如:
-projectPath ${workPath} -quit -batchmode -executeMethod EditorTool.JenkinsTest workPath=${workPath}
3.在unity中获取参数
string[] param = Environment.GetCommandLineArgs();
下面是传入的参数,用等号分割取出变量值
4.批量删除构建历史
系统管理-脚本命令行,输入:
//项目名称
def jobName = "Some_Job_Name",这个是job名称,就是一开始构建的
//删除小于等于64的构建历史
def maxNumber = 64
Jenkins.instance.getItemByFullName(jobName).builds.findAll {
it.number <= maxNumber
}.each {
it.delete()
}
5. 构建完整例子
Jenkins自动打包并部署到远程服务器_肆小猿的博客-CSDN博客_jenkins打包,发布,部署
6.Tomcat 安装和使用
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。