added jenkinsfile with initial step for init

This commit is contained in:
2023-10-06 12:02:38 -07:00
parent c93ac10288
commit de61253db6
Vendored
+10
View File
@@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Init') {
steps {
sh 'rbenv local 3.2.2'
}
}
}