forked from samvera/hydra-head
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
208 lines (168 loc) · 5.71 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
require 'rake/testtask'
require 'bundler'
Bundler::GemHelper.install_tasks
APP_ROOT= File.dirname(__FILE__)
require 'jettywrapper'
namespace :jetty do
TEMPLATE_DIR = 'hydra-core/lib/generators/hydra/templates'
SOLR_DIR = "#{TEMPLATE_DIR}/solr_conf/conf"
FEDORA_DIR = "#{TEMPLATE_DIR}/fedora_conf/conf"
desc "Config Jetty"
task :config => :clean do
Rake::Task["jetty:config_fedora"].reenable
Rake::Task["jetty:config_fedora"].invoke
Rake::Task["jetty:config_solr"].reenable
Rake::Task["jetty:config_solr"].invoke
end
desc "Copies the default SOLR config for the bundled Hydra Testing Server"
task :config_solr do
FileList["#{SOLR_DIR}/*"].each do |f|
cp("#{f}", 'jetty/solr/development-core/conf/', :verbose => true)
cp("#{f}", 'jetty/solr/test-core/conf/', :verbose => true)
end
end
desc "Copies a custom fedora config for the bundled Hydra Testing Server"
task :config_fedora do
# load a custom fedora.fcfg -
if defined?(Rails.root)
app_root = Rails.root
else
app_root = File.join(File.dirname(__FILE__),"..")
end
fcfg = File.join(FEDORA_DIR,"development","fedora.fcfg")
if File.exists?(fcfg)
puts "copying over development/fedora.fcfg"
cp("#{fcfg}", 'jetty/fedora/default/server/config/', :verbose => true)
else
puts "#{fcfg} file not found -- skipping fedora config"
end
fcfg = File.join(FEDORA_DIR,"test","fedora.fcfg")
if File.exists?(fcfg)
puts "copying over test/fedora.fcfg"
cp("#{fcfg}", 'jetty/fedora/test/server/config/', :verbose => true)
else
puts "#{fcfg} file not found -- skipping fedora config"
end
end
end
desc "Run Continuous Integration"
task :ci => ['jetty:config'] do
jetty_params = Jettywrapper.load_config
error = nil
error = Jettywrapper.wrap(jetty_params) do
Rake::Task['spec'].invoke
end
raise "test failures: #{error}" if error
Rake::Task["doc"].invoke
end
task :default => [:ci]
directory 'pkg'
FRAMEWORKS = ['hydra-access-controls', 'hydra-core']
root = File.expand_path('../', __FILE__)
version = File.read("#{root}/HYDRA_VERSION").strip
tag = "v#{version}"
(FRAMEWORKS + ['hydra-head']).each do |framework|
namespace framework do
gem = "pkg/#{framework}-#{version}.gem"
gemspec = "#{framework}.gemspec"
task :clean do
rm_f gem
end
task :update_version_rb do
glob = root.dup
glob << "/#{framework}/lib/*" unless framework == "hydra-head"
glob << "/version.rb"
file = Dir[glob].first
if file
ruby = File.read(file)
major, minor, tiny, pre = version.split('.')
pre = pre ? pre.inspect : "nil"
ruby.gsub!(/^(\s*)VERSION = ".*?"$/, "\\1VERSION = \"#{version}\"")
raise "Could not insert VERSION in #{file}" unless $1
File.open(file, 'w') { |f| f.write ruby }
end
end
task gem => %w(update_version_rb pkg) do
cmd = ""
cmd << "cd #{framework} && " unless framework == "hydra-head"
cmd << "gem build #{gemspec} && mv #{framework}-#{version}.gem #{root}/pkg/"
sh cmd
end
task :build => [:clean, gem]
task :install => :build do
sh "gem install #{gem}"
end
task :prep_release => [:ensure_clean_state, :build]
task :push => :build do
sh "gem push #{gem}"
end
end
end
namespace :all do
task :build => FRAMEWORKS.map { |f| "#{f}:build" } + ['hydra-head:build']
task :install => FRAMEWORKS.map { |f| "#{f}:install" } + ['hydra-head:install']
task :push => FRAMEWORKS.map { |f| "#{f}:push" } + ['hydra-head:push']
task :ensure_clean_state do
unless `git status -s | grep -v HYDRA_VERSION | grep -v HISTORY.textile`.strip.empty?
abort "[ABORTING] `git status` reports a dirty tree. Make sure all changes are committed"
end
unless ENV['SKIP_TAG'] || `git tag | grep "#{tag}$"`.strip.empty?
abort "[ABORTING] `git tag` shows that #{tag} already exists. Has this version already\n"\
" been released? Git tagging can be skipped by setting SKIP_TAG=1"
end
end
task :commit do
File.open('pkg/commit_message.txt', 'w') do |f|
f.puts "# Preparing for #{version} release\n"
f.puts
f.puts "# UNCOMMENT THE LINE ABOVE TO APPROVE THIS COMMIT"
end
sh "git add . && git commit --verbose --template=pkg/commit_message.txt"
rm_f "pkg/commit_message.txt"
end
task :tag do
sh "git tag #{tag}"
sh "git push --tags"
end
task :release => %w(ensure_clean_state build commit tag push)
end
desc "run all specs"
task :spec do
raise "test failures" unless all_modules('rake spec')
end
desc "Remove any existing test deploys"
task :clean do
raise "test failures" unless all_modules('rake clean')
end
def all_modules(cmd)
FRAMEWORKS.each do |dir|
Dir.chdir(dir) do
puts "\n\e[1;33m[Hydra CI] #{dir}\e[m\n"
#cmd = "bundle exec rake spec" # doesn't work because it doesn't require the gems specified in the Gemfiles of the test rails apps
return false unless system(cmd)
end
end
end
begin
require 'yard'
require 'yard/rake/yardoc_task'
project_root = File.expand_path(".")
doc_destination = File.join(project_root, 'doc')
if !File.exists?(doc_destination)
FileUtils.mkdir_p(doc_destination)
end
YARD::Rake::YardocTask.new(:doc) do |yt|
yt.files = ['*/lib/**/*.rb', project_root+"*", '*/app/**/*.rb']
yt.options << "-m" << "textile"
yt.options << "--protected"
yt.options << "--no-private"
yt.options << "-r" << "README.textile"
yt.options << "-o" << "doc"
yt.options << "--files" << "*.textile"
end
rescue LoadError
desc "Generate YARD Documentation"
task :doc do
abort "Please install the YARD gem to generate rdoc."
end
end