nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 1 | # -*- ruby -*- |
| 2 | require 'rake/extensiontask' |
| 3 | require 'rspec/core/rake_task' |
Tim Emiola | e2860c5 | 2015-01-16 02:58:41 -0800 | [diff] [blame] | 4 | require 'rubocop/rake_task' |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 5 | require 'bundler/gem_tasks' |
Nicolas Noble | 86cbe30 | 2016-02-05 15:08:12 -0800 | [diff] [blame] | 6 | require 'fileutils' |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 7 | |
Nicolas "Pixel" Noble | 09ac0a4 | 2016-01-31 09:24:11 +0100 | [diff] [blame] | 8 | load 'tools/distrib/docker_for_windows.rb' |
| 9 | |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 10 | # Add rubocop style checking tasks |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 11 | RuboCop::RakeTask.new(:rubocop) do |task| |
| 12 | task.options = ['-c', 'src/ruby/.rubocop.yml'] |
| 13 | task.patterns = ['src/ruby/{lib,spec}/**/*.rb'] |
| 14 | end |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 15 | |
Nicolas "Pixel" Noble | cb287a1 | 2016-01-28 05:01:01 +0100 | [diff] [blame] | 16 | spec = Gem::Specification.load('grpc.gemspec') |
| 17 | |
| 18 | Gem::PackageTask.new(spec) do |pkg| |
| 19 | end |
| 20 | |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 21 | # Add the extension compiler task |
Nicolas "Pixel" Noble | eade6e0 | 2016-01-29 22:53:31 +0100 | [diff] [blame] | 22 | Rake::ExtensionTask.new('grpc_c', spec) do |ext| |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 23 | ext.source_pattern = '**/*.{c,h}' |
| 24 | ext.ext_dir = File.join('src', 'ruby', 'ext', 'grpc') |
| 25 | ext.lib_dir = File.join('src', 'ruby', 'lib', 'grpc') |
Nicolas "Pixel" Noble | cb287a1 | 2016-01-28 05:01:01 +0100 | [diff] [blame] | 26 | ext.cross_compile = true |
Nicolas "Pixel" Noble | 5219c6d | 2016-02-05 22:22:29 +0100 | [diff] [blame] | 27 | ext.cross_platform = [ |
| 28 | 'x86-mingw32', 'x64-mingw32', |
| 29 | 'x86_64-linux', 'x86-linux', |
Nicolas Noble | 86cbe30 | 2016-02-05 15:08:12 -0800 | [diff] [blame] | 30 | 'universal-darwin' |
Nicolas "Pixel" Noble | 5219c6d | 2016-02-05 22:22:29 +0100 | [diff] [blame] | 31 | ] |
Nicolas "Pixel" Noble | d51d121 | 2016-01-31 11:33:19 +0100 | [diff] [blame] | 32 | ext.cross_compiling do |spec| |
| 33 | spec.files = %w( etc/roots.pem grpc_c.32.ruby grpc_c.64.ruby ) |
| 34 | spec.files += Dir.glob('src/ruby/bin/**/*') |
| 35 | spec.files += Dir.glob('src/ruby/ext/**/*') |
| 36 | spec.files += Dir.glob('src/ruby/lib/**/*') |
| 37 | spec.files += Dir.glob('src/ruby/pb/**/*') |
| 38 | end |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 39 | end |
| 40 | |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 41 | # Define the test suites |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 42 | SPEC_SUITES = [ |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 43 | { id: :wrapper, title: 'wrapper layer', files: %w(src/ruby/spec/*.rb) }, |
| 44 | { id: :idiomatic, title: 'idiomatic layer', dir: %w(src/ruby/spec/generic), |
Tim Emiola | 397fda0 | 2015-01-29 13:26:21 -0800 | [diff] [blame] | 45 | tags: ['~bidi', '~server'] }, |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 46 | { id: :bidi, title: 'bidi tests', dir: %w(src/ruby/spec/generic), |
Tim Emiola | 397fda0 | 2015-01-29 13:26:21 -0800 | [diff] [blame] | 47 | tag: 'bidi' }, |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 48 | { id: :server, title: 'rpc server thread tests', dir: %w(src/ruby/spec/generic), |
Tim Emiola | 975d0cb | 2015-08-14 10:44:17 -0700 | [diff] [blame] | 49 | tag: 'server' }, |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 50 | { id: :pb, title: 'protobuf service tests', dir: %w(src/ruby/spec/pb) } |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 51 | ] |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 52 | namespace :suite do |
| 53 | SPEC_SUITES.each do |suite| |
| 54 | desc "Run all specs in the #{suite[:title]} spec suite" |
| 55 | RSpec::Core::RakeTask.new(suite[:id]) do |t| |
Tim Emiola | c85c1ae | 2015-04-17 18:12:32 -0700 | [diff] [blame] | 56 | ENV['COVERAGE_NAME'] = suite[:id].to_s |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 57 | spec_files = [] |
| 58 | suite[:files].each { |f| spec_files += Dir[f] } if suite[:files] |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 59 | |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 60 | if suite[:dir] |
| 61 | suite[:dir].each { |f| spec_files += Dir["#{f}/**/*_spec.rb"] } |
| 62 | end |
murgatroid99 | d7e1a10 | 2015-12-18 11:16:16 -0800 | [diff] [blame] | 63 | helper = 'src/ruby/spec/spec_helper.rb' |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 64 | spec_files << helper unless spec_files.include?(helper) |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 65 | |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 66 | t.pattern = spec_files |
| 67 | t.rspec_opts = "--tag #{suite[:tag]}" if suite[:tag] |
| 68 | if suite[:tags] |
| 69 | t.rspec_opts = suite[:tags].map { |x| "--tag #{x}" }.join(' ') |
nnoble | 097ef9b | 2014-12-01 17:06:10 -0800 | [diff] [blame] | 70 | end |
| 71 | end |
| 72 | end |
| 73 | end |
| 74 | |
Nicolas "Pixel" Noble | f08399f | 2016-01-31 23:54:38 +0100 | [diff] [blame] | 75 | desc 'Build the Windows gRPC DLLs for Ruby' |
| 76 | task 'dlls' do |
Nicolas "Pixel" Noble | 1723044 | 2016-01-29 01:46:19 +0100 | [diff] [blame] | 77 | grpc_config = ENV['GRPC_CONFIG'] || 'opt' |
Nicolas "Pixel" Noble | 89d8ed1 | 2016-02-03 01:12:14 +0100 | [diff] [blame] | 78 | verbose = ENV['V'] || '0' |
Nicolas "Pixel" Noble | 1723044 | 2016-01-29 01:46:19 +0100 | [diff] [blame] | 79 | |
Ken Payson | 17233ce | 2016-06-22 17:16:15 -0700 | [diff] [blame] | 80 | env = 'CPPFLAGS="-D_WIN32_WINNT=0x600 -DUNICODE -D_UNICODE -Wno-unused-variable -Wno-unused-result" ' |
Nicolas "Pixel" Noble | 0215d90 | 2016-01-31 09:57:07 +0100 | [diff] [blame] | 81 | env += 'LDFLAGS=-static ' |
Nicolas "Pixel" Noble | 09ac0a4 | 2016-01-31 09:24:11 +0100 | [diff] [blame] | 82 | env += 'SYSTEM=MINGW32 ' |
| 83 | env += 'EMBED_ZLIB=true ' |
| 84 | env += 'BUILDDIR=/tmp ' |
Nicolas "Pixel" Noble | 89d8ed1 | 2016-02-03 01:12:14 +0100 | [diff] [blame] | 85 | env += "V=#{verbose} " |
Nicolas "Pixel" Noble | 09ac0a4 | 2016-01-31 09:24:11 +0100 | [diff] [blame] | 86 | out = '/tmp/libs/opt/grpc-0.dll' |
| 87 | |
Nicolas "Pixel" Noble | f08399f | 2016-01-31 23:54:38 +0100 | [diff] [blame] | 88 | w64 = { cross: 'x86_64-w64-mingw32', out: 'grpc_c.64.ruby' } |
| 89 | w32 = { cross: 'i686-w64-mingw32', out: 'grpc_c.32.ruby' } |
Nicolas "Pixel" Noble | 09ac0a4 | 2016-01-31 09:24:11 +0100 | [diff] [blame] | 90 | |
Nicolas "Pixel" Noble | f08399f | 2016-01-31 23:54:38 +0100 | [diff] [blame] | 91 | [ w64, w32 ].each do |opt| |
| 92 | env_comp = "CC=#{opt[:cross]}-gcc " |
| 93 | env_comp += "LD=#{opt[:cross]}-gcc " |
| 94 | docker_for_windows "#{env} #{env_comp} make -j #{out} && #{opt[:cross]}-strip -x -S #{out} && cp #{out} #{opt[:out]}" |
| 95 | end |
| 96 | |
| 97 | end |
| 98 | |
Nicolas "Pixel" Noble | 5219c6d | 2016-02-05 22:22:29 +0100 | [diff] [blame] | 99 | desc 'Build the native gem file under rake_compiler_dock' |
| 100 | task 'gem:native' do |
Nicolas "Pixel" Noble | 89d8ed1 | 2016-02-03 01:12:14 +0100 | [diff] [blame] | 101 | verbose = ENV['V'] || '0' |
Nicolas "Pixel" Noble | 09ac0a4 | 2016-01-31 09:24:11 +0100 | [diff] [blame] | 102 | |
Nicolas Noble | 86cbe30 | 2016-02-05 15:08:12 -0800 | [diff] [blame] | 103 | if RUBY_PLATFORM =~ /darwin/ |
| 104 | FileUtils.touch 'grpc_c.32.ruby' |
| 105 | FileUtils.touch 'grpc_c.64.ruby' |
Nicolas "Pixel" Noble | da46a70 | 2016-02-06 01:52:02 +0100 | [diff] [blame] | 106 | system "rake cross native gem RUBY_CC_VERSION=2.3.0:2.2.2:2.1.5:2.0.0 V=#{verbose}" |
Nicolas Noble | 86cbe30 | 2016-02-05 15:08:12 -0800 | [diff] [blame] | 107 | else |
| 108 | Rake::Task['dlls'].execute |
Nicolas "Pixel" Noble | da46a70 | 2016-02-06 01:52:02 +0100 | [diff] [blame] | 109 | docker_for_windows "bundle && rake cross native gem RUBY_CC_VERSION=2.3.0:2.2.2:2.1.5:2.0.0 V=#{verbose}" |
Nicolas Noble | 86cbe30 | 2016-02-05 15:08:12 -0800 | [diff] [blame] | 110 | end |
Nicolas "Pixel" Noble | cb287a1 | 2016-01-28 05:01:01 +0100 | [diff] [blame] | 111 | end |
| 112 | |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 113 | # Define dependencies between the suites. |
| 114 | task 'suite:wrapper' => [:compile, :rubocop] |
| 115 | task 'suite:idiomatic' => 'suite:wrapper' |
| 116 | task 'suite:bidi' => 'suite:wrapper' |
| 117 | task 'suite:server' => 'suite:wrapper' |
Tim Emiola | 975d0cb | 2015-08-14 10:44:17 -0700 | [diff] [blame] | 118 | task 'suite:pb' => 'suite:server' |
Tim Emiola | 397fda0 | 2015-01-29 13:26:21 -0800 | [diff] [blame] | 119 | |
Tim Emiola | f20d760 | 2015-03-24 08:11:47 -0700 | [diff] [blame] | 120 | desc 'Compiles the gRPC extension then runs all the tests' |
Tim Emiola | 975d0cb | 2015-08-14 10:44:17 -0700 | [diff] [blame] | 121 | task all: ['suite:idiomatic', 'suite:bidi', 'suite:pb', 'suite:server'] |
Tim Emiola | 397fda0 | 2015-01-29 13:26:21 -0800 | [diff] [blame] | 122 | task default: :all |