Skip to content

Commit c9e85d3

Browse files
authoredMar 24, 2020
Make travis.yml valid and to unblock gem releases (#782)
In https://travis-ci.org/github/ctran/annotate_models/builds/659982898/config?utm_medium=notification&utm_source=github_status it looks like `travis.yml` is not valid and seems the `matrix` portion seems to be overwriting `jobs`, which is used to release the gem. This config is valid. I used `travis lint .travis.yml` to validate locally.
1 parent 5745034 commit c9e85d3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed
 

‎.travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ rvm:
88
env:
99
- RAILS_ENV=development RACK_ENV=development
1010

11-
matrix:
12-
allow_failures:
13-
- rvm: ruby-head
14-
1511
addons:
1612
apt_packages:
1713
- libsqlite3-dev
@@ -30,7 +26,7 @@ jobs:
3026
include:
3127
- stage: gem release
3228
if: tag =~ ^v
33-
rvm: 2.6.0
29+
rvm: 2.6.5
3430
script: echo "Deploying to rubygems.org ..."
3531
deploy:
3632
provider: rubygems

0 commit comments

Comments
 (0)
Please sign in to comment.