-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathRakefile
More file actions
112 lines (91 loc) · 4.06 KB
/
Copy pathRakefile
File metadata and controls
112 lines (91 loc) · 4.06 KB
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
require 'rake/testtask'
mvnw = File.expand_path('./mvnw', File.dirname(__FILE__))
# reproducible build: SOURCE_DATE_EPOCH shared by jopenssl.jar and gem
# read from env by RubyGems; pass via -D so dev builds don't churn pom.xml
def source_date_epoch!
ENV['SOURCE_DATE_EPOCH'] ||= `git log -1 --pretty=%ct`.strip
end
def _build_output_timestamp
"-Dproject.build.outputTimestamp=#{ENV['SOURCE_DATE_EPOCH']}" if ENV['SOURCE_DATE_EPOCH']
end
desc "Package jopenssl.jar with the compiled classes"
task :jar do
sh("#{mvnw} prepare-package -Dmaven.test.skip=true")
end
task :test_prepare => :jar do
sh("#{mvnw} test-compile") # separate due -Dmaven.test.skip=true
end
task :clean do
sh("#{mvnw} clean")
end
task :build do
source_date_epoch!
sh("#{mvnw} -Prelease -DupdateReleaseInfo=true #{_build_output_timestamp} clean package")
end
desc "Sanity-check the tree/version, then build a reproducible release gem"
task :release => :release_check do
source_date_epoch! # pin to the release commit so the gem + jar use the same
puts "SOURCE_DATE_EPOCH=#{ENV['SOURCE_DATE_EPOCH']} (#{Time.at(ENV['SOURCE_DATE_EPOCH'].to_i).utc})"
Rake::Task[:build].invoke
gem = Dir['target/*.gem', 'pkg/*.gem'].max_by { |f| File.mtime(f) }
abort "release aborted - no .gem produced" unless gem
puts "built #{gem}"
# gem push #{gem} (or: #{File.basename(mvnw)} deploy -Pjar-release for the jar artifact)"
end
task :release_check do
dirty = `git status --porcelain`.strip
abort "release aborted - working tree is not clean:\n#{dirty}" unless dirty.empty?
load File.expand_path('lib/jopenssl/version.rb', File.dirname(__FILE__))
version = JOpenSSL::VERSION
if Gem::Version.new(version).prerelease? && ENV['PRERELEASE'] != 'true'
abort "release aborted - #{version} is a prerelease"
end
branch = `git rev-parse --abbrev-ref HEAD`.strip
warn "WARNING: releasing from '#{branch}' (not 'master')" unless branch == 'master'
expected_tag = "v#{version}" # release tags are vX.Y.Z
tags = `git tag --points-at HEAD`.split("\n")
unless tags.include?(expected_tag)
found = tags.empty? ? 'none' : tags.join(', ')
warn "WARNING: no #{expected_tag} tag points at HEAD (tags at HEAD: #{found})"
end
puts "release checks passed for #{version}"
end
desc "Build the self-contained jar-release artifacts (-Pjar-release)"
task :jar_release => :release_check do
source_date_epoch!
puts "SOURCE_DATE_EPOCH=#{ENV['SOURCE_DATE_EPOCH']} (#{Time.at(ENV['SOURCE_DATE_EPOCH'].to_i).utc})"
sh("#{mvnw} package -Pjar-release -Dmaven.test.skip=true #{_build_output_timestamp}")
# deploy (gpg-sign + push): #{File.basename(mvnw)} deploy -Prelease,jar-release -D...
end
task :default => :build
file('lib/jopenssl.jar') { Rake::Task[:jar].invoke }
file('pkg/test-classes/org/jruby/ext/openssl/SecurityHelperTest.class') do
Rake::Task[:test_prepare].invoke
end
Rake::TestTask.new do |task|
task.libs << File.expand_path('test', File.dirname(__FILE__))
test_files = FileList['test/**/test*.rb'].to_a
task.test_files = test_files.map { |path| path.sub('test/', '') }
task.verbose = false # using -v directly instead due issues with rake
task.loader = :direct
task.ruby_opts = [ '-v', '-rbundler/setup' ]
end
task :test => ['lib/jopenssl.jar', 'pkg/test-classes/org/jruby/ext/openssl/SecurityHelperTest.class']
require_relative 'tasks/vendor_tests'
define_vendor_test_tasks # root + jopenssl_lib default to this tree
namespace :integration do
it_path = File.expand_path('integration', File.dirname(__FILE__))
task :install do
ruby "-C #{it_path} -S bundle install"
end
desc "Run tests via invoker (bc-compat)"
task :test => 'lib/jopenssl.jar' do
unless File.exist?(File.join(it_path, 'Gemfile.lock'))
fail "bundle not installed, run `rake integration:install'"
end
loader = "ARGV.each { |file| require(file) }"
lib = [ File.expand_path('../lib', __FILE__), it_path ]
test_files = FileList['integration/*_test.rb'].map { |path| path.sub('integration/', '') }
ruby "-I#{lib.join(':')} -C integration -e \"#{loader}\" #{test_files.map { |f| "\"#{f}\"" }.join(' ')}"
end
end