wrap steps in the steps block

pull/15/head
Adam Townsend 2023-10-06 18:42:44 -07:00
parent c0a0548662
commit a0ba8ba9f3
1 changed files with 4 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -18,8 +18,10 @@ pipeline {
} }
} }
stage('Build dependencies') { stage('Build dependencies') {
steps {
sh 'bundle install' sh 'bundle install'
sh 'sequel -m db/migrations sqlite://db/${DB_NAME}' sh 'sequel -m db/migrations sqlite://db/${DB_NAME}'
} }
} }
}
} }