安装注意方面
- 主页地址 https://www.gocd.io/
- 先安装JAVA,GOCD建议使用压缩包的方式进行安装;(如果报defineclass异常,需要升级java版本)
- 启动默认端口http8153、https8154;
使用方面
1. Mac下启动GoAgent时,Agent使用的PATH不是当前用户的PATH,此时很多比如node,grunt就无法使用,可以使用命令行的方式启动,即运行/Applications/Go Agent.app/Contents/MacOS/go-agent;
2. Job包含的Task是相互独立的,每个Task改变的环境变量不会影响到其他Task;
3. Stage下可以包含多个Job,Job之间是并行执行,任一个Job失败,Stage失败;
4. Job下包含多个Task,Task是顺序执行,任一个失败,Job失败;
5. Task执行额外命令是,命令名称不能包含空格,即参数放入参数输入框;
6. 16.12版本配置Job不能添加多个agent resource;
7. 如果需要Job在多个agent上执行,需要在Job配置页面选择正确"Run Type";
通过GOCD获取应用生成好的文件,如日志
1. Job配置页面,Artifacts选项卡,输入项目的路径,及生成Artifacts的名称;
2. 可以创建一个获取Artifacts的Job,获取任一个Stage生成好的Artifacts;
设置Pipline的label
<pipeline name="my-material-pipeline" labeltemplate="1.2.${SVN_MATERIAL}">
<materials>
<svn url="http://svn.example.com/" dest="svn" materialName="SVN_MATERIAL" />
</materials>
...
</pipeline>
使用环境变量
1. 在linux/unix中,sh -c(回车)ls $Environment_Variables
2. windows下,直接使用echo %Environment Variables%,因为所有命令都会被cmd /c包装;
3. 在脚本中可以随意使用;
RESTFull api路径https://api.gocd.io/current/
基本密码验证方式
打开"Admin"选项卡,点击选择"Server Configuration",在"User Management"部分吓得"Password File Settings"输入框中输入用户名密码的properties文件路径;
密码是使用SHA1加上base64方式,代码如下
MessageDigest md = MessageDigest.getInstance("SHA1");
Base64 base64 = new Base64();
byte[] bytes = md.digest(bytes);
String sha1base64 = base64.encodeToString(bytes);//这个就是encode后的结果
修改Agent连接的Server地址
GO_SERVER_URL=https://10.203.125.178:8154/go ./agent.sh
一台机器上运行多个agent
MacOS
只需要简单的copy应用,即Go Agent.app,再次执行如下命令
GO_APPLICATION_NAME="Go Agent 2" /Applications/Go\ Agent\ 2.app/Contents/MacOS/go-agent
Linux
cp /etc/init.d/go-agent /etc/init.d/go-agent-1
sed -i 's/# Provides: go-agent$/# Provides: go-agent-1/g' /etc/init.d/go-agent-1
ln -s /usr/share/go-agent /usr/share/go-agent-1
cp -p /etc/default/go-agent /etc/default/go-agent-1
mkdir /var/{lib,log}/go-agent-1
chown go:go /var/{lib,log}/go-agent-1
windows
1. Copy the installation folder ("C:\Program Files\Go Agent") to "C:\Program Files\Go Agent 2"
2. Delete the file C:\Program Files\Go Agent 2\config\guid.txt
3. Delete the file C:\Program Files\Go Agent 2\.agent-bootstrapper.running
4. Edit wrapper-agent.conf file to customise information related to Go Agent 2 Just after the line #include ../conf/wrapper-license.conf, add
set.GO_AGENT_DIR=C:\Program Files\Go Agent 2
set.GO_AGENT_JAVA_HOME=%GO_AGENT_DIR%\jre
5. Run the following command
6. sc create GoAgent2 binPath= "\"C:\Program Files\Go Agent2\cruisewrapper.exe\" -s \"C:\Program Files\Go Agent2\config\wrapper-agent.conf\""
7. Start "GoAgent2" service
Clean up after canceling a task
在Task配置页面最下方,可以勾选“On Cancel Task”,并配置额外信息