about summary refs log tree commit diff
path: root/.circleci/config.yml
AgeCommit message (Collapse)Author
2018-08-18Use CircleCI workflows for ruby dependencies (#8228)ThibG
* Add “bundle clean” suggestion from CircleCI doc Cf. https://circleci.com/docs/2.0/caching/#bundler-ruby * Use workspaces instead of caches for ruby gems Cache are not guaranteed to be available, while the test jobs *require* their depencies to run. Workspaces are thus more suitable. One downside is that the order of workspace layer additions need to be deterministic, which is why install-ruby{2.3,2.4} now depend on install-ruby2.5.
2018-07-30Use workspace instead of caching for built assets (#8103)ThibG
Tests cannot run without built assets, and we want exactly the matching assets. This is not a cache.
2018-07-03Restore support to ruby 2.3, add ruby 2.3 to circle ci (#7935)Renato "Lond" Cerqueira
This replace calls of String#match? with rails Regex#match? This follows the same idea used to keep Rails 5.2 compatible with Ruby 2.2.2 in https://github.com/rails/rails/pull/32973
2018-05-11Add CONTINUOUS_INTEGRATION: true to .circleci/config.yml (#7447)Yamagishi Kazutoshi
2018-05-09Disable simplecov on CircleCI (#7416)Yamagishi Kazutoshi
* Disable simplecov on CircleCI * Remove --format progress
2018-05-06Port travis_retry for CI (#7379)Yamagishi Kazutoshi
* Port travis_retry for CI * Add license
2018-04-28Remove unnecessary hyphen from restore_cache key (#7276)Yamagishi Kazutoshi
2018-04-23Move precompile step to build stage (#7235)Yamagishi Kazutoshi
2018-04-21Add parallel test processors (#7215)Yamagishi Kazutoshi
2018-04-20Replace Travis to CircleCI (#7196)Yamagishi Kazutoshi