Skip to content

Instantly share code, notes, and snippets.

@WoodProgrammer
Last active January 12, 2020 00:00
Show Gist options
  • Save WoodProgrammer/1ee913fed1bf6cd6c70ee587f0cb2b18 to your computer and use it in GitHub Desktop.
Save WoodProgrammer/1ee913fed1bf6cd6c70ee587f0cb2b18 to your computer and use it in GitHub Desktop.
jobs:
- script: >
pipelineJob('default-agent') {
definition {
cps {
script("""\
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}
}""".stripIndent())
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment