diff options
| author | Thorben Starsy <[email protected]> | 2020-12-29 22:59:19 +0100 |
|---|---|---|
| committer | Thorben Starsy <[email protected]> | 2020-12-29 22:59:25 +0100 |
| commit | 5273b5724b577d9090801b3e9a1dc6cbd577d38b (patch) | |
| tree | 7630d98b3c2d85805f79cf1982195cc2a2a14dad | |
| parent | b6b220fc656149760390da7914cc12e0a8a002be (diff) | |
| download | caxlsx-5273b5724b577d9090801b3e9a1dc6cbd577d38b.tar.gz caxlsx-5273b5724b577d9090801b3e9a1dc6cbd577d38b.zip | |
Removes Rubinius from Travis build matrix
1. For some reason in MRI 3 the gems tagged as platform RBX in the Gemfile
got installed anyways :/
2. The RBX-specific gems were not compatible to be installed with MRI 3
3. The RBX-3 target was allowed to fail and failed for a while as RVM was
not even able to install that Rubinius version
4. -> Remove RBX from the build matrix solves some problems
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rw-r--r-- | Gemfile | 9 |
2 files changed, 1 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index 72badf19..465df230 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,13 +20,11 @@ matrix: - rvm: 2.6.6 - rvm: 2.7.1 - rvm: 3.0.0 - - rvm: rbx-3 - rvm: jruby-19mode - rvm: jruby-9.1.17.0 - rvm: ruby-head - rvm: jruby-head allow_failures: - - rvm: rbx-3 - rvm: ruby-head - rvm: jruby-9.1.17.0 - rvm: jruby-head @@ -9,11 +9,4 @@ end group :profile do gem 'ruby-prof', :platforms => :ruby -end - -platforms :rbx do - gem 'rubysl' - gem 'rubysl-test-unit' - gem 'racc' - gem 'rubinius-coverage', '~> 2.0' -end +end
\ No newline at end of file |
