<?xml version="1.0" encoding="utf-8"?>
<server artifactsdir="artifacts" agentAutoRegisterKey="123456789abcdef" commandRepositoryLocation="default" serverId="03ca58da-7be3-459d-b208-057a0e2c344c" />
<config-repos>
<config-repo plugin="yaml.config.plugin">
</config-repo>
</config-repos>
</cruise>
And here's my pipeline file (result-flow.gocd.yml):
---
pipelines:
"result-flow":
group: testgroup
materials:
mygit:
stages:
- build:
jobs:
build:
tasks:
- exec:
command: mvn clean compile
test:
tasks:
- exec:
command: mvn test
I also have a simple.gocd.yaml pipeline file in the repository, it's one of the examples from your github.