From e6117f8a7333c64812dbaecf6cd0629d3d2ede09 Mon Sep 17 00:00:00 2001 From: Graham Paye Date: Tue, 29 Jan 2019 15:34:24 -0800 Subject: [PATCH] remove travis and add 2.6 to list of rubies to test against (#758) --- .kokoro/build.sh | 2 +- .travis.yml | 26 -------------------------- 2 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 .travis.yml diff --git a/.kokoro/build.sh b/.kokoro/build.sh index 640b167be..9a9363bf3 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -20,7 +20,7 @@ ruby --version # https://github.com/bundler/bundler/issues/6154 export BUNDLE_GEMFILE= -RUBY_VERSIONS=("2.3.8" "2.4.5" "2.5.3") +RUBY_VERSIONS=("2.3.8" "2.4.5" "2.5.3" "2.6.0") # Capture failures EXIT_STATUS=0 # everything passed diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index db913f920..000000000 --- a/.travis.yml +++ /dev/null @@ -1,26 +0,0 @@ -language: ruby -sudo: false -rvm: - - 2.2 - - 2.3 - - 2.4 - - 2.5 - - jruby - - jruby-9.0.5.0 -env: - - RAILS_VERSION="~>4.2.0" - - RAILS_VERSION="~>5.0.0" -matrix: - exclude: - - env: RAILS_VERSION="~>4.2.0" - rvm: 2.3 - - env: RAILS_VERSION="~>4.2.0" - rvm: jruby -before_install: - - gem install bundler --version 1.17.3 -notifications: - email: - recipients: - - sbazyl@google.com - on_success: change - on_failure: change