Preseed the run-tests.sh cache to make test runs faster (bugfix).
[arvados-dev.git] / jenkins / run-performance-suite.sh
index 6ffeff80ba968c6377afb938d80657fdfb028313..e5c80930105d5b09db1a44502c8712d2bbd283ba 100755 (executable)
@@ -1,5 +1,9 @@
 #!/bin/bash
 
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 EXITCODE=0
 
 INSTANCE=$1
@@ -57,6 +61,14 @@ if [[ "$REVISION" != '' ]]; then
   git checkout $REVISION
 fi
 
+ECODE=$?
+
+if [[ "$ECODE" != "0" ]]; then
+  title "!!!!!! PERFORMANCE TESTS FAILED (`timer`) !!!!!!"
+  EXITCODE=$(($EXITCODE + $ECODE))
+  exit $EXITCODE
+fi
+
 cp -f /home/jenkins/diagnostics/arvados-workbench/$INSTANCE-application.yml $WORKSPACE/apps/workbench/config/application.yml
 
 cd $WORKSPACE/apps/workbench
@@ -67,7 +79,9 @@ if [[ ! -d tmp ]]; then
   mkdir tmp
 fi
 
-RAILS_ENV=performance bundle exec rake TEST=test/performance/browsing_test.rb
+mkdir -p tmp/cache
+
+RAILS_ENV=performance bundle exec rake test:benchmark
 
 ECODE=$?