methodmissing / rbczmq

Ruby extension that wraps the official high level ZeroMQ C API ( http://czmq.zeromq.org/ )
http://github.com/methodmissing/rbczmq
MIT License
125 stars 32 forks source link

Fix rubinius build fail @ Travis #27

Closed methodmissing closed 10 years ago

methodmissing commented 11 years ago

Using worker: worker-linux-6-2.bb.travis-ci.org:travis-linux-20 git.1 $ git clone --depth=50 --branch=master git://github.com/methodmissing/rbczmq.git methodmissing/rbczmq Cloning into 'methodmissing/rbczmq'... remote: Counting objects: 386, done. remote: Compressing objects: 100% (221/221), done. remote: Total 386 (delta 191), reused 307 (delta 164) Receiving objects: 100% (386/386), 2.50 MiB | 0 bytes/s, done. Resolving deltas: 100% (191/191), done. Checking connectivity... done $ cd methodmissing/rbczmq git.3 $ git checkout -qf af346d1ce303b92238ac36d6ce4e22b52383fa69 git.4 $ git submodule init Submodule 'ext/czmq' (https://github.com/zeromq/czmq) registered for path 'ext/czmq' Submodule 'ext/zeromq' (https://github.com/zeromq/zeromq4-x) registered for path 'ext/zeromq' git.5 $ git submodule update Cloning into 'ext/czmq'... remote: Counting objects: 5008, done. remote: Compressing objects: 100% (2313/2313), done. remote: Total 5008 (delta 3034), reused 4617 (delta 2668) Receiving objects: 100% (5008/5008), 2.19 MiB | 0 bytes/s, done. Resolving deltas: 100% (3034/3034), done. Checking connectivity... done Submodule path 'ext/czmq': checked out '3e6c11a7b75ef6f51a0eac895564306b88e5d24f' Cloning into 'ext/zeromq'... remote: Counting objects: 16977, done. remote: Compressing objects: 100% (4171/4171), done. remote: Total 16977 (delta 12692), reused 16846 (delta 12565) Receiving objects: 100% (16977/16977), 10.82 MiB | 19.06 MiB/s, done. Resolving deltas: 100% (12692/12692), done. Checking connectivity... done Submodule path 'ext/zeromq': checked out 'f8cebb460a94ddee613fd7f4ed23300f9cc790ba' $ rvm use rbx-d19 --install --binary --fuzzy rbx-2.2.0-d19 is not installed. Searching for binary rubies, this might take some time. Requested binary installation but no rubies are available to download, consider skipping --binary flag. Gemset '' does not exist, 'rvm rbx-2.2.0-d19 do rvm gemset create ' first, or append '--create'. The command "rvm use rbx-d19 --install --binary --fuzzy" failed and exited with 2 during setup. Your build has been stopped.

mattconnolly commented 10 years ago

Fixed now (it seems) by adding this to the Gemfile:

platforms :rbx do
  gem 'rubysl', '~> 2.0'
  gem 'minitest', '~> 4.7'
  gem 'rubysl-test-unit', '~> 2.0'
end

https://travis-ci.org/methodmissing/rbczmq

methodmissing commented 10 years ago

Thx Matt :-)