-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
51 lines (41 loc) · 1.11 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
require "bundler/gem_tasks"
APP_ROOT = File.dirname(__FILE__)
require 'rspec/core/rake_task'
require 'engine_cart/rake_task'
require 'solr_wrapper'
task :default => :ci
desc "Run specs"
RSpec::Core::RakeTask.new do |t|
end
desc "Load fixtures"
task :fixtures => ['engine_cart:generate'] do
within_test_app do
system "rake blacklight:index:seed RAILS_ENV=test"
abort "Error running fixtures" unless $?.success?
end
end
desc "Execute Continuous Integration build"
task ci: 'engine_cart:generate' do
ENV['environment'] = "test"
SolrWrapper.wrap(port: '8983') do |solr|
solr.with_collection(name: 'blacklight-core', dir: File.join(File.expand_path(File.dirname(__FILE__)), 'solr', 'conf')) do
Rake::Task['fixtures'].invoke
Rake::Task['spec'].invoke
end
end
end
task :server do
if File.exists? 'spec/internal'
within_test_app do
system "bundle update"
end
else
Rake::Task['engine_cart:generate'].invoke
end
SolrWrapper.wrap(port: '8983') do
within_test_app do
system "rake blacklight:index:seed"
system "bundle exec rails s"
end
end
end