Skip to content

Commit

Permalink
Ruby 2.6.0 (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Jan 3, 2019
1 parent 52a67b0 commit 77353a0
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 3 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,31 @@ jobs:
name: run tests
command: |
./script/ci
"ruby-2.6":
docker:
- image: hanami/ruby-2.6
working_directory: ~/hanami-utils
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "Gemfile.lock" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
bundle install --jobs=4 --retry=3 --path vendor/bundle
- save_cache:
paths:
- ./vendor/bundle
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
# run tests!
- run:
name: run tests
command: |
./script/ci
"jruby-9.1":
docker:
- image: hanami/jruby-9.1
Expand Down Expand Up @@ -137,5 +162,6 @@ workflows:
- "ruby-2.3"
- "ruby-2.4"
- "ruby-2.5"
- "ruby-2.6"
- "jruby-9.1"
- "jruby-9.2"
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ before_script:
- gem update --system
script: ./script/ci
rvm:
- 2.4.4
- 2.3.7
- 2.5.1
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- jruby-9.1.9.0
- ruby-head
- jruby-head
Expand All @@ -16,6 +17,7 @@ matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.9.0

notifications:
webhooks:
Expand Down

0 comments on commit 77353a0

Please sign in to comment.