From 4490ed3e7c800e855dc25a34b88b988f386187cb Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Sun, 22 Oct 2023 16:22:18 -0700 Subject: [PATCH] output something from the bundler audit to see in the reports --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 465c327..7b9cb91 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,7 +27,7 @@ pipeline { steps { catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') { sh 'bundle exec ruby-audit check' - sh 'bundle exec bundle-audit check' + sh 'bundle exec bundle-audit check >> audit.html' } } } @@ -55,9 +55,9 @@ pipeline { alwaysLinkToLastBuild: false, keepAll: true, reportDir: '.', - reportFiles: 'rubocop.html, cucumber.html, spec.html, coverage/index.html', + reportFiles: 'rubocop.html, audit.html, cucumber.html, spec.html, coverage/index.html', reportName: 'Test Results', - reportTitles: 'Rubocop Results, Cucumber Results, RSpec Results, Test Coverage']) + reportTitles: 'Rubocop Results, Bundler Audit Results, Cucumber Results, RSpec Results, Test Coverage']) } } stage('Build production deliverable') {