forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
172 lines (146 loc) · 4.34 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
task :default => [:build]
Object.const_set(:BASE_DIR, Dir.pwd)
File.open("default.build.properties") do |props|
props.each_line do |line|
# skip comments
next if line =~ /^\W*#/
# build const name
name, value = line.split("=")
name.gsub!(".", "_").upcase!
Object.const_set(name.to_sym, value)
# substitute embedded props
value.chop!.gsub!(/\$\{([^}]+)\}/) do |embed|
Object.const_get($1.gsub!(".", "_").upcase!)
end
end
end
def ant(*args)
system "ant -logger org.apache.tools.ant.NoBannerLogger #{args.join(' ')}"
end
desc "Build JRuby"
task :build do
ant "jar"
end
task :jar => :build
desc "Alias for test:short"
task :test => "test:short"
desc "Alias for spec:ci"
task :spec => "spec:ci"
namespace :test do
desc "Compile test code"
task :compile do
ant "compile-test"
system "jar cf build/jruby-test-classes.jar -C build/classes/test ."
end
desc "Run the basic set of tests"
task :short do
ant "test"
end
desc "Run the complete set of tests (will take a while)"
task :all do
ant "test-all"
end
desc "Run tracing tests (do not forget to pass --debug)"
task :tracing do
require 'rake/testtask'
Rake::TestTask.new('test:tracing') do |t|
t.pattern = 'test/tracing/test_*.rb'
t.verbose = true
t.ruby_opts << '--debug'
end
end
end
file "build/jruby-test-classes.jar" do
Rake::Task['test:compile'].invoke
end
namespace :spec do
desc "Run the rubyspecs expected to pass (version-frozen)"
task :ci do
ant "spec"
end
desc "Run all the specs including failures (version-frozen)"
task :all do
ant "spec-all"
end
gem 'rspec'
require 'spec/rake/spectask'
desc "Runs Java Integration Specs"
Spec::Rake::SpecTask.new("ji" => "build/jruby-test-classes.jar") do |t|
t.spec_opts ||= []
t.spec_opts << "--options" << "spec/java_integration/spec.opts"
t.spec_files = FileList['spec/java_integration/**/*_spec.rb']
end
desc "Runs Java Integration specs quietly"
Spec::Rake::SpecTask.new("ji:quiet" => "build/jruby-test-classes.jar") do |t|
t.spec_opts ||= []
t.spec_opts << "--options" << "spec/java_integration/spec.quiet.opts"
t.spec_files = FileList['spec/java_integration/**/*_spec.rb']
end
desc "Runs Compiler Specs"
Spec::Rake::SpecTask.new("compiler" => "build/jruby-test-classes.jar") do |t|
t.spec_files = FileList['spec/compiler/**/*_spec.rb']
end
desc "Runs FFI specs"
Spec::Rake::SpecTask.new("ffi" => "build/jruby-test-classes.jar") do |t|
t.spec_files = FileList['spec/ffi/**/*_spec.rb']
end
end
desc "Clean all built output"
task :clean do
delete_files = FileList.new do |fl|
fl.
include("#{BUILD_DIR}/**").
exclude("#{BUILD_DIR}/rubyspec").
include(DIST_DIR).
include(API_DOCS_DIR)
end
delete_files.each {|files| rm_rf files, :verbose => true}
end
desc "Generate sources, compile and add to jar file"
task :gen do
mkdir_p 'src_gen'
system 'apt -nocompile -cp lib/jruby.jar:build_lib/asm-3.0.jar:build_lib/asm-util-3.0.jar -factory org.jruby.anno.AnnotationBinder src/org/jruby/*.java'
system 'javac -cp lib/jruby.jar src_gen/*.java'
system 'jar -uf lib/jruby.jar -C src_gen .'
end
namespace :maven do
class Pom
def initialize(filename)
@filename = filename
@lines = IO.readlines(filename)
end
def update_version(version)
group = nil
artifact = nil
@lines.each do |line|
match = line.match(%r{<groupId>([^<]+)</groupId>})
if match
group = match[1]
next
end
match = line.match(%r{<artifactId>([^<]+)</artifactId>})
if match
artifact = match[1]
next
end
if line =~ %r{<version>[0-9][^<]+</version>} && group =~ /^org.jruby/ && artifact =~ /^(jruby|shared)/
line.sub!(/<version>([^<]+)<\/version>/, "<version>#{version}</version>")
end
end
end
def save
File.open(@filename, 'w') {|f| @lines.each {|l| f << l } }
end
end
desc "Update versions in maven poms with string passed in ENV['VERSION']"
task :updatepoms do
version = ENV['VERSION'] or abort("Pass the new version with VERSION={version}")
dir = Dir.pwd
Dir["#{dir}/**/pom.xml"].each do |f|
puts "updating #{f}"
pom = Pom.new(f)
pom.update_version(version)
pom.save
end
end
end