Skip to content

Instantly share code, notes, and snippets.

@avielb
Last active April 28, 2019 17:24
Show Gist options
  • Save avielb/842d617461df2f55ef5254ec6e44409e to your computer and use it in GitHub Desktop.
Save avielb/842d617461df2f55ef5254ec6e44409e to your computer and use it in GitHub Desktop.
pipeline {
agent any
stages {
stage("checkout"){
steps{
git "https://github.com/avielb/work-with-github.git"
}
}
stage("run something"){
steps{
echo "Hello world!"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment