summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-02-27 20:03:24 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-03-06 07:43:01 +0900
commita7116356e7a1c0decd8e591d0eba7d6cbebcf1d3 (patch)
treedea367ffeab0eb86a93f50dddc23eb0f15643a6e
parentdffbb3d9964c18b3c3bc1465aacc62fea3df3418 (diff)
downloadbundler-a7116356e7a1c0decd8e591d0eba7d6cbebcf1d3.tar.gz
Move version specified matrix to GitHub Actions
-rw-r--r--.github/workflows/ubuntu.yml10
-rw-r--r--.travis.yml14
2 files changed, 10 insertions, 14 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index e4737fa42f..91b45b447a 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -16,6 +16,15 @@ jobs:
ruby: [ 2.3.8, 2.4.9, 2.5.7, 2.6.5 ]
rgv: [ master, v3.0.6 ]
bundler_version: [ 2.2.0.dev, 3.0.0 ]
+ include:
+ - ruby: 2.3.8
+ rgv: v2.5.2
+ - ruby: 2.4.9
+ rgv: v2.6.14
+ - ruby: 2.5.7
+ rgv: v2.7.10
+ - ruby: head
+ rgv: master
steps:
- uses: actions/checkout@v1
- name: Setup ruby
@@ -38,4 +47,5 @@ jobs:
bin/rake spec:realworld
env:
BUNDLER_SPEC_PRE_RECORDED: 1
+ continue-on-error: ${{matrix.ruby == 'head' }}
timeout-minutes: 60
diff --git a/.travis.yml b/.travis.yml
index 8db0203889..d4aaf2ef16 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,20 +34,6 @@ notifications:
jobs:
include:
- # Ruby 2.3 also tested in 2.x mode
- - rvm: 2.3.8
- env: RGV=master
- - rvm: 2.3.8
- env: RGV=v3.0.6
- # Ruby 2.5, Rubygems 2.7
- - rvm: 2.5.7
- env: RGV=v2.7.10
- # Ruby 2.4, Rubygems 2.6
- - rvm: 2.4.9
- env: RGV=v2.6.14
- # Ruby 2.3, Rubygems 2.5
- - rvm: 2.3.8
- env: RGV=v2.5.2
# Ruby-head (we want to know how we're doing, but not fail the build)
- rvm: ruby-head
env: RGV=master