Skip to content

Instantly share code, notes, and snippets.

@rodrigc
Created August 10, 2018 22:31
Show Gist options
  • Save rodrigc/84570f84c7b516001abd69246053ec57 to your computer and use it in GitHub Desktop.
Save rodrigc/84570f84c7b516001abd69246053ec57 to your computer and use it in GitHub Desktop.
test.pipeline2
#!groovy
pipeline {
agent any;
parameters {
string(defaultValue: 'master',
description: 'branch',
name: 'BRANCH')
}
stages {
stage('Checkout') {
steps {
sh "Do stuff"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment