Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2271fcabde71
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 29701fdf05b8
Choose a head ref
  • 8 commits
  • 11 files changed
  • 1 contributor

Commits on Jun 14, 2016

  1. Copy the full SHA
    b338524 View commit details
  2. Copy the full SHA
    79bb9ce View commit details
  3. Copy the full SHA
    864e2eb View commit details
  4. Copy the full SHA
    9930b6c View commit details
  5. Copy the full SHA
    045790d View commit details
  6. Copy the full SHA
    23691fc View commit details
  7. Copy the full SHA
    fd274bb View commit details
  8. Copy the full SHA
    29701fd View commit details
20 changes: 20 additions & 0 deletions lib/ruby/truffle/jruby+truffle/gem_ci/actionpack.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
declare_options exclude: ['--[no-]exclude',
'Exclude known failing tests',
STORE_NEW_VALUE,
true]

subdir 'actionpack'
repository_name 'rails'

git_clone 'https://github.com/rails/rails.git' unless File.exists? repository_dir
git_checkout git_tag('4.2.6')

use_only_https_git_paths!

has_to_succeed setup

set_result run([%w[--require-pattern test/**/*_test.rb],
(option(:exclude) ? %w[-r excluded-tests] : []),
%w[-- -I test -e nil]].flatten(1),
raise: false)

2 changes: 1 addition & 1 deletion lib/ruby/truffle/jruby+truffle/gem_ci/activemodel.rb
Original file line number Diff line number Diff line change
@@ -8,5 +8,5 @@

has_to_succeed setup

result run(%w[--require-pattern test/**/*_test.rb -- -I test -e nil], raise: false)
set_result run(%w[--require-pattern test/**/*_test.rb -- -I test -e nil], raise: false)

2 changes: 1 addition & 1 deletion lib/ruby/truffle/jruby+truffle/gem_ci/activesupport.rb
Original file line number Diff line number Diff line change
@@ -8,5 +8,5 @@

has_to_succeed setup

result run(%w[--require-pattern test/**/*_test.rb -- -I test -e nil], raise: false)
set_result run(%w[--require-pattern test/**/*_test.rb -- -I test -e nil], raise: false)

2 changes: 1 addition & 1 deletion lib/ruby/truffle/jruby+truffle/gem_ci/algebrick.rb
Original file line number Diff line number Diff line change
@@ -3,5 +3,5 @@

has_to_succeed setup

result run(%w[test/algebrick_test.rb], raise: false)
set_result run(%w[test/algebrick_test.rb], raise: false)

2 changes: 1 addition & 1 deletion lib/ruby/truffle/jruby+truffle/gem_ci/default.rb
Original file line number Diff line number Diff line change
@@ -9,5 +9,5 @@

has_to_succeed setup

result run(%w[-S rake], raise: false)
set_result run(%w[-S rake], raise: false)

1 change: 1 addition & 0 deletions lib/ruby/truffle/jruby+truffle/gem_ci/travis.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
actionpack
activesupport
activemodel
algebrick
Loading