Skip to content

Instantly share code, notes, and snippets.

@owainlewis
Last active March 28, 2018 02:33
Show Gist options
  • Save owainlewis/8207002 to your computer and use it in GitHub Desktop.
Save owainlewis/8207002 to your computer and use it in GitHub Desktop.
Jenkins config for Rspec and Rails4

Install the CI reporter gem for Jenkins test output

group :test do
  # For jenkins test output
  gem 'ci_reporter'
end
#!/bin/bash

source ~/.bashrc

bundle

read -d '' database_yml <<"EOF"  
test:
  adapter: postgresql
  encoding: unicode
  database: wrking_test
  user: jenkins
  pool: 5
EOF

echo "$database_yml" > config/database.yml

rake db:test:prepare RAILS_ENV=test

rake ci:setup:rspec spec RAILS_ENV=test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment