Created
February 13, 2022 22:26
-
-
Save majorsilence/b9f25e5a2e9ed820d894c24cf6e3ac35 to your computer and use it in GitHub Desktop.
Ruby Jenkins Pipeline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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