Skip to content

Instantly share code, notes, and snippets.

@majorsilence
Created February 13, 2022 22:26
Show Gist options
  • Save majorsilence/b9f25e5a2e9ed820d894c24cf6e3ac35 to your computer and use it in GitHub Desktop.
Save majorsilence/b9f25e5a2e9ed820d894c24cf6e3ac35 to your computer and use it in GitHub Desktop.
Ruby Jenkins Pipeline
pipeline {
agent none
stages {
stage('build and test') {
agent {
docker {
image 'ruby:3.1.0'
}
}
steps {
echo "whatever is done for ruby can go here"
sh """
ruby --version
"""
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment