added jenkinsfile with initial step for init

pull/15/head
Adam Townsend 2023-10-06 12:02:38 -07:00
parent c93ac10288
commit de61253db6
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored 100644
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Init') {
steps {
sh 'rbenv local 3.2.2'
}
}
}