From c9e85d3ca25f2252a4613cae6176e2f156809c43 Mon Sep 17 00:00:00 2001 From: "Andrew W. Lee" Date: Mon, 23 Mar 2020 23:03:35 -0500 Subject: [PATCH] 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. --- .travis.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0f536f13f..7c6366248 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,6 @@ rvm: env: - RAILS_ENV=development RACK_ENV=development -matrix: - allow_failures: - - rvm: ruby-head - addons: apt_packages: - libsqlite3-dev @@ -30,7 +26,7 @@ jobs: include: - stage: gem release if: tag =~ ^v - rvm: 2.6.0 + rvm: 2.6.5 script: echo "Deploying to rubygems.org ..." deploy: provider: rubygems