File tree Expand file tree Collapse file tree 4 files changed +13
-15
lines changed Expand file tree Collapse file tree 4 files changed +13
-15
lines changed Original file line number Diff line number Diff line change 1111 - USE_REF=1 # Installs OpenBLAS and reference LAPACK, builds and tests nmatrix, nmatrix-lapacke
1212 - NO_EXTERNAL_LIB=1 # No external libraries installed, only nmatrix
1313rvm :
14- - 1.9.3
1514 - 2.0.0-p648
1615 - 2.1.8
1716 - 2.2.4
@@ -91,19 +90,19 @@ matrix:
9190 env :
9291 - ruby_version=2.1.8 USE_OPENBLAS=1
9392 allow_failures :
94- # Ruby versions which got EOL
95- - rvm : 1.9.3
9693 # trunk
9794 - rvm : ruby-head
9895 - rvm : ruby-head-clang
99- - env : ruby_version=2.4.0-dev USE_OPENBLAS=1
100- - env : ruby_version=2.4.0-dev NO_EXTERNAL_LIB=1
101- # linux with clang
102- - os : linux
103- rvm : 2.3.0-clang
104- # For some reason this OpenBLAS configuration isn't working on travis, disable it for now.
105- - os : linux
106- env : USE_OPENBLAS=1
96+ - os : osx
97+ compiler : clang
98+ rvm : 2.2
99+ env :
100+ - ruby_version=2.4.0-dev USE_OPENBLAS=1
101+ - os : osx
102+ compiler : clang
103+ rvm : 2.2
104+ env :
105+ - ruby_version=2.4.0-dev NO_EXTERNAL_LIB=1
107106
108107notifications :
109108 irc : " chat.freenode.net#sciruby"
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ class RubyObject {
110110 inline operator VALUE () const { return rval; }
111111 // inline operator uint32_t() const { return NUM2ULONG(this->rval); }
112112 inline operator int64_t () const { RETURN_OBJ2NUM (NUM2LONG) }
113- inline operator uint64_t () const { RETURN_OBJ2NUM (NUM2ULONG) }
113+ // inline operator uint64_t() const { RETURN_OBJ2NUM(NUM2ULONG) }
114114 inline operator double () const { RETURN_OBJ2NUM (NUM2DBL) }
115115 inline operator float () const { RETURN_OBJ2NUM (NUM2DBL) }
116116
Original file line number Diff line number Diff line change 5757
5858 gem . add_dependency 'packable' , '~> 1.3' , '>= 1.3.5'
5959 gem . add_development_dependency 'bundler' , '~>1.6'
60- gem . add_development_dependency 'json' , '~>2.0.1' if RUBY_VERSION >= '2.1.0'
6160 gem . add_development_dependency 'pry' , '~>0.10'
6261 gem . add_development_dependency 'rake' , '~>10.3'
6362 gem . add_development_dependency 'rake-compiler' , '~>0.8'
Original file line number Diff line number Diff line change 3737
3838 # Install ruby
3939 (
40- brew install bison openssl readline libyaml
40+ brew install bison openssl readline
4141 brew link --force openssl
4242 RBENV_VERSION=system
4343 MAKEOPTS=' -j 4'
4444 CONFIGURE_OPTS=" --disable-install-doc --with-out-ext=tk,tk/tkutil --with-opt-dir=/usr/local"
45- rbenv install $ruby_version
45+ rbenv install --verbose $ruby_version
4646 )
4747
4848 gem pristine --all
You can’t perform that action at this time.
0 commit comments