-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcruise-config.xml
27 lines (27 loc) · 963 Bytes
/
cruise-config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<cruise xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="cruise-config.xsd" schemaVersion="87">
<server artifactsdir="artifacts" agentAutoRegisterKey="123456789abcdef" commandRepositoryLocation="default" serverId="">
<security>
<passwordFile path="/etc/go/users" />
</security>
</server>
<pipelines group="defaultGroup">
<pipeline name="create-pipelines">
<materials>
<git url="https://github.com/dennisgranath/gocd-pipelines-example" />
</materials>
<stage name="Create-pipelines">
<jobs>
<job name="create-pipelines">
<tasks>
<exec command="/bin/bash">
<arg>-c</arg>
<arg>gocd-plumber -config /etc/gocd-plumber/config.ini</arg>
</exec>
</tasks>
</job>
</jobs>
</stage>
</pipeline>
</pipelines>
</cruise>