aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
Commit message (Collapse)AuthorAgeFilesLines
* Remove JRUBY_OPTS from .travis.yml fileArun Agrawal2015-10-231-2/+0
| | | | | | | As we are not running tests for JRuby on travis this option is not needed. For more details check 0e8c04529159522aadbfe4fe71ea3d326df07d52
* Added beanstalkd to Travis so ActiveJob integration tests for beanstalkd can runhiren mistry2015-09-191-0/+5
|
* Test against the newest stable ruby 2.2.3Akira Matsuda2015-08-221-1/+1
|
* Remove JRuby and Rubinius from the travis matrixRafael Mendonça França2015-07-131-4/+0
| | | | | | | | | | This will save Travis some precious resource since it will not need to run 18 jobs for these Ruby implementations on every push or pull request. We do care about these implementations but we should fix the build locally before having it running on travis. We would love to have someone working on this but right now it is not our reality.
* Add the bug report templates to the Travis CI buildRoque Pinel2015-06-051-0/+1
| | | | | | | | | | | | The bug report templates are now executed from the `ci/travis.rb` when `GEM` contains `guides`. I started by creating a `test` task in `guides/Rakefile` to handle this, but since inline `gemfile` must not be executed with `bundle exec`, that rake task would not be consistent with others. So I went back by executing them directly from `Build`. Use inline Gemfile dependency when reporting gem bugs
* Skip test that fails from outdated sqlite3 on travisSean Griffin2015-06-021-3/+0
|
* Attempt to fix travis failuresSean Griffin2015-05-301-0/+3
| | | | | The version of SQLite used by Travis is outdated. We need to install a newer version.
* Revert "Use bundler < 1.10 until its bugs are fixed"Samuel E. Giddins2015-05-281-1/+1
| | | | This reverts commit 81b42970f02d07ca5007bbce920b489d80172636.
* Revert "Uninstall bundler 1.10"Samuel E. Giddins2015-05-281-1/+0
| | | | This reverts commit 410d246bc0ddabe47f0bf54116be9087bd3d4bda.
* Revert "Force the uninstall"Samuel E. Giddins2015-05-281-1/+1
| | | | This reverts commit 9ff901bd3e046b0373b28459269146707b5bf8c9.
* Force the uninstallRafael Mendonça França2015-05-281-1/+1
|
* Uninstall bundler 1.10Rafael Mendonça França2015-05-281-0/+1
|
* Use bundler < 1.10 until its bugs are fixedRafael Mendonça França2015-05-281-1/+1
| | | | See https://github.com/bundler/bundler/issues/3681
* Enable Active Job integration tests againRafael Mendonça França2015-04-141-1/+0
|
* Use Ruby 2.2.2 on travisYuki Nishijima2015-04-131-1/+1
| | | | This is required to run https://github.com/rails/rails/pull/19752 successfully.
* Disable Active Job intregration tests.Rafael Mendonça França2015-04-081-0/+1
| | | | They may be fixed at #19470
* Revert "Allow failures with Active Job"Jeremy Kemper2015-03-051-4/+1
| | | | | | | Travis is green. Let's keep it that way rather than let AJ languish as a second-class citizen. This reverts commit 2a6b3e14cff61639978a55f47aea9ff4c8e72758.
* Use ruby 2.2.1 on TravisSean Griffin2015-03-051-1/+1
|
* Track Gemfile.lock at the repositoryRafael Mendonça França2015-02-181-0/+1
| | | | | | | | | | | | | | | | The main reason is to make bisect easier. In some points, we have a lot of git dependencies. Since we don't have the information of which commit we are referring to, bundler get the latest commit of the master branch of the dependency. This sometimes returns a version that is not compatible with Rails anymore, making the tests fail and the harder to identify the commit that introduced a bug. Also this will make sure that a contributor will always get a set of dependencies that are passing with our tests. In our CI server we delete the lock file to make sure we are always testing against the newest release of our dependencies.
* Move ruby-head to allowed failures [ci skip]Sean Griffin2015-02-051-0/+1
| | | | | We're about a year a way from either project releasing, their development doesn't need to break our builds for now.
* Disable builds AR-JDBC against masterPeter Suschlik2015-01-221-1/+0
| | | | | | | Currently, bundling `activerecord-jdbc-adapter`'s master branch seems to be broken. See jruby/activerecord-jdbc-adapter#614 This commit partially reverts #12107
* Travis: Test on jruby-head only for nowPeter Suschlik2015-01-211-2/+2
| | | | Arel head does not support 1.9 anymore.
* Use bundler 1.7 on travisSean Griffin2015-01-181-0/+1
|
* Use parallel bundler install.Guo Xiang Tan2015-01-101-1/+1
| | | | | Travis recommends a default of 3. See: http://docs.travis-ci.com/user/languages/ruby/#Default-Test-Script
* Require Ruby 2.2 for Rails 5.0claudiob2014-12-261-1/+1
| | | | | Stems from [this comment](https://github.com/rails/rails/pull/18203#issuecomment-68138096) by @robin850 and by the blog post http://weblog.rubyonrails.org/2014/12/19/Rails-4-2-final
* Enable Travis CI container-modeRafael Mendonça França2014-12-181-3/+5
| | | | And also bundler cache
* Allow failures for mysql adapter testsRafael Mendonça França2014-12-021-2/+1
|
* Allow failures with Active Job integration testsRafael Mendonça França2014-11-281-0/+1
|
* Allow failures with Active JobRafael Mendonça França2014-11-281-1/+3
|
* Start Rails 5 development :tada:Rafael Mendonça França2014-11-281-6/+0
| | | | | | | We will support only Ruby >= 2.1. But right now we don't accept pull requests with syntax changes to drop support to Ruby 1.9.
* Start running railties builds first, since they take the longest finishErik Michaels-Ober2014-10-131-7/+7
|
* Follow up to #16613Robin Dupret2014-09-281-1/+1
| | | | | | | | | | | | Since we want this flag to be enabled anytime we are running the tests under JRuby, let's enable this at the Rakefile level so people get the performance boost on their local checkout. Moreover, we avoid having to update this particular line anytime the option changes on the JRuby side. The only drawback is that we have to define it in every Rakefile but there's no big deal, this is already the case for other options.
* OMG mysql!Rafael Mendonça França2014-09-171-0/+2
|
* ruby-head should be greenRafael Mendonça França2014-09-171-1/+0
| | | | Ruby 2.2 is near to be released so we should support it properly
* ActiveJob Integration TestsCristian Bica2014-09-111-0/+6
|
* Ignore segfault build errors with 2.0.0 + mysql-rubyJeremy Kemper2014-09-061-0/+2
| | | | | | Continuation of c9a43126c5e2c608ab3ff1be994bce69e815a144 :cry:
* Add language directive to .travis.ymlHiro Asari2014-08-271-0/+1
| | | | | | | Currently, Travis CI assumes that the project is in Ruby in the absence of the `language` key. This behavior may change in the future. (For example, switch to a "blank" image which *may* be created.)
* Merge pull request #16613 from splattael/masterMatthew Draper2014-08-271-7/+10
|\ | | | | | | Speed up JRuby tests by improving the startup time
| * Speed up JRuby tests by improving its startup timePeter Suschlik2014-08-251-7/+10
|/ | | | | | | | | Emulate `jruby --dev` which improves JRuby's startup time. See https://github.com/jruby/jruby/wiki/Improving-startup-time#use-the---dev-flag Follow @headius' idea and give Java more memory to reduce GC time.
* Added ActiveJob configuration for travisCristian Bica2014-08-141-1/+1
|
* Split Action Pack tests in a new job on travisRafael Mendonça França2014-07-231-1/+2
| | | | This will make easier to compare run time between Ruby 2.1 and trunk
* Ignore distressingly-frequent segfaults on this buildMatthew Draper2014-06-081-0/+2
| | | | | | | Not sure what's causing them suddenly, but it seems unlikely there's much we can do about it. For the small amount of coverage this particular job gains us, it's hurting us more, by making CI failures unremarkable.
* Revert "Remove ruby-head from allow_failures matrix"Santiago Pastorino2014-05-151-0/+1
| | | | This reverts commit 5d2d301024cc0b17f26f6b454ac22a72f1db8a23.
* Remove ruby-head from allow_failures matrixSantiago Pastorino2014-05-151-1/+0
|
* Test with ruby-head to make @tenderlove happyRafael Mendonça França2014-05-121-0/+2
|
* Only need MINOR version level to test Ruby 2.1.x on TravisZachary Scott2014-05-091-1/+1
| | | | cc http://blog.travis-ci.com/2014-04-28-upcoming-build-environment-updates/
* Use ruby 2.1.2 on travisArthur Neves2014-05-091-1/+1
|
* Remove double declaration of memcache services on travisKamil Kieliszczyk2014-04-281-1/+0
|
* add services: memcache to travisArthur Neves2014-04-091-0/+1
|
* travis s/2.1.0/2.1.1Arthur Neves2014-02-251-2/+1
|