Skip to content

Commit

Permalink
fixup! Rewrite Foreman's testing to a matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
ekohl committed Jan 7, 2025
1 parent 234a41a commit bcb0476
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion theforeman.org/pipelines/release/source/foreman.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@ pipeline {
}
}
}
stage(TASK) {
stage('database') {
steps {
bundleExec(RUBY_VER, "rake db:create --trace")
bundleExec(RUBY_VER, "rake db:migrate --trace")
}
}
stage('rake task') {
steps {
bundleExec(RUBY_VER, "rake ${TASK} --trace")
}
Expand Down

0 comments on commit bcb0476

Please sign in to comment.