Skip to content

Commit

Permalink
Merge pull request #3619 from fluent/ci-update
Browse files Browse the repository at this point in the history
Tweak CI
  • Loading branch information
ashie committed Feb 14, 2022
2 parents 672338f + 39dce90 commit ab2c2db
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ['3.0', '2.7', '2.6']
ruby-version: ['3.1', '3.0', '2.7', '2.6']
os: [ubuntu-latest]
experimental: [false]
include:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/macos-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ['head', '2.7']
ruby-version: ['3.1', '3.0', '2.7']
os: [macos-latest]
experimental: [true]
include:
- ruby-version: head
os: macos-latest
experimental: true

name: Unit testing with Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/windows-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
- windows-latest
experimental: [false]
include:
- ruby-version: '3.0.2'
- ruby-version: '3.0.3'
os: windows-latest
experimental: true
experimental: false
# On Ruby 3.0, we need to use fiddle 1.0.8 or later to retrieve correct
# error code. In addition, we have to specify the path of fiddle by RUBYLIB
# because RubyInstaller loads Ruby's bundled fiddle before initializing gem.
# See also:
# * https://github.com/ruby/fiddle/issues/72
# * https://bugs.ruby-lang.org/issues/17813
# * https://github.com/oneclick/rubyinstaller2/blob/8225034c22152d8195bc0aabc42a956c79d6c712/lib/ruby_installer/build/dll_directory.rb
ruby-lib-opt: RUBYLIB=%RUNNER_TOOL_CACHE%/Ruby/3.0.2/x64/lib/ruby/gems/3.0.0/gems/fiddle-1.0.8/lib
ruby-lib-opt: RUBYLIB=%RUNNER_TOOL_CACHE%/Ruby/3.0.3/x64/lib/ruby/gems/3.0.0/gems/fiddle-1.1.0/lib

name: Unit testing with Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
steps:
Expand All @@ -37,9 +37,9 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Add Fiddle 1.0.8
if: ${{ matrix.ruby-version == '3.0.2' }}
run: gem install fiddle --version 1.0.8
- name: Add Fiddle 1.1.0
if: ${{ matrix.ruby-version == '3.0.3' }}
run: gem install fiddle --version 1.1.0
- name: Install dependencies
run: ridk exec bundle install
- name: Run tests
Expand Down

0 comments on commit ab2c2db

Please sign in to comment.