Created
November 2, 2016 16:20
-
-
Save zerolaser/c814a3527e82aac7fe316e9050b8f202 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
environments: | |
example: | |
pipelines: | |
- mypipe | |
pipelines: | |
mypipe: # definition of yaml-example pipeline | |
group: yamlexample | |
label_template: "${mygit[:8]}" | |
locking: off | |
materials: | |
mygit: # this is the name of material | |
# keyword git says about type of material and url at once | |
git: https://github.com/gocd-contrib/getting-started-repo | |
branch: master | |
stages: # list of stages in order | |
- defaultStage: # name of stage | |
clean_workspace: true | |
jobs: | |
defaultJob: # name of the job | |
resources: | |
- java8 | |
- linux | |
tasks: # ordered list of tasks to execute in job csharp | |
- exec: # indicates type of task | |
command: ./build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment