From 6c63e6c0a80c1f77a9f96be9956aa2a31147a89e Mon Sep 17 00:00:00 2001 From: Ward Vandewege Date: Mon, 9 Feb 2015 23:39:13 -0500 Subject: [PATCH] Make sure tmp/cache exists before we run our performance test suite. refs #4754 --- jenkins/run-performance-suite.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jenkins/run-performance-suite.sh b/jenkins/run-performance-suite.sh index c594620b26..2944bda5ed 100755 --- a/jenkins/run-performance-suite.sh +++ b/jenkins/run-performance-suite.sh @@ -67,6 +67,8 @@ if [[ ! -d tmp ]]; then mkdir tmp fi +mkdir -p tmp/cache + RAILS_ENV=performance bundle exec rake test:benchmark ECODE=$? -- 2.30.2