Skip to content

Instantly share code, notes, and snippets.

@michaelneale
Last active June 21, 2016 23:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelneale/ce1eec3318404df252ed49886d38a165 to your computer and use it in GitHub Desktop.
Save michaelneale/ce1eec3318404df252ed49886d38a165 to your computer and use it in GitHub Desktop.
{
"stages" : [
{
"name" : "build",
"steps" : [
{
"type" : "sh",
"value" : "bundle install"
},
{
"type" : "withTimeout",
"time" : 5,
"steps" : [
{
"type" : "sh",
"value" : "./test.sh"
},
{
"type" : "echo",
"value" : "I am a bad person"
},
{
"type" : "onBranch",
"branch" : "master",
"steps" : [
{
"type" : "sh",
"value" : "./deploy.sh"
}
]
},
]
}
]
}
],
"notifications" : {
},
"environment" : {
},
"image": "node:5.11.1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment