Skip to content

Commit

Permalink
Merge pull request #3974 from rubygems/fail_fast
Browse files Browse the repository at this point in the history
Disable `fail-fast` mode in CI
  • Loading branch information
deivid-rodriguez committed Sep 29, 2020
2 parents ff86ba4 + 11a4fbb commit 5521428
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/daily-bundler.yml
Expand Up @@ -8,9 +8,6 @@ jobs:
daily_bundler:
runs-on: ubuntu-18.04
if: github.repository == 'rubygems/rubygems'
strategy:
matrix:
ruby: [ ruby-head ]
env:
RGV: ..
steps:
Expand All @@ -19,7 +16,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
ruby-version: ruby-head
bundler: none

- name: Show Ruby version
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/daily-rubygems.yml
Expand Up @@ -9,6 +9,7 @@ jobs:
runs-on: ubuntu-18.04
if: github.repository == 'rubygems/rubygems'
strategy:
fail-fast: false
matrix:
ruby: [ ruby-head, truffleruby-head ]
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/install-rubygems.yml
Expand Up @@ -12,6 +12,7 @@ jobs:
install_rubygems:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1, jruby-9.2.11.1 ]
openssl: [true, false]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/macos-rubygems.yml
Expand Up @@ -12,6 +12,7 @@ jobs:
macos_rubygems:
runs-on: macos-10.15
strategy:
fail-fast: false
matrix:
ruby: [ 2.4.10, 2.5.8, 2.6.6, 2.7.1 ]
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/older-rubygems-bundler.yml
Expand Up @@ -16,6 +16,7 @@ jobs:
older_rubygems_bundler:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1 ]
rgv: [ v2.5.2, v2.6.14, v2.7.10, v3.0.8, v3.1.4 ]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ruby-core.yml
Expand Up @@ -12,6 +12,7 @@ jobs:
ruby_core:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
target: [rubygems, bundler]
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ubuntu-bundler.yml
Expand Up @@ -12,6 +12,7 @@ jobs:
ubuntu_bundler:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1 ]
bundler: [ '', 3.0.0 ]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ubuntu-rubygems.yml
Expand Up @@ -12,6 +12,7 @@ jobs:
ubuntu_rubygems:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
ruby: [ 2.3.8, 2.4.10, 2.5.8, 2.6.6, 2.7.1, jruby-9.2.11.1, truffleruby-20.2.0 ]
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows-bundler.yml
Expand Up @@ -16,6 +16,7 @@ jobs:
RGV: ..

strategy:
fail-fast: false
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7' ]

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows-rubygems.yml
Expand Up @@ -12,6 +12,7 @@ jobs:
windows_rubygems:
runs-on: windows-2019
strategy:
fail-fast: false
matrix:
ruby: [ 2.4.10, 2.5.8, 2.6.6, 2.7.1 ]
steps:
Expand Down

0 comments on commit 5521428

Please sign in to comment.