Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-ruby-head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
os: ['ubuntu-latest', 'macos-latest', 'windows-latest', 'windows-11-arm']
ruby-version: ['head']
env:
RUBYOPT: "--disable-frozen_string_literal"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
os: ['ubuntu-latest', 'macos-latest', 'windows-latest', 'windows-11-arm']
ruby-version: ['4.0', '3.4', '3.3', '3.2']
exclude:
- os: 'windows-11-arm'
ruby-version: '3.3'
- os: 'windows-11-arm'
ruby-version: '3.2'
env:
RUBYOPT: "--disable-frozen_string_literal"
name: Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions test/command/test_ctl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def test_commands(data)
"reload" => ["reload", "USR2"])
def test_commands_with_winsvcname(data)
omit "Only for Windows" unless Fluent.windows?
omit "Need ffi 1.17.3 or later but blocked by https://github.com/chef/ffi-win32-extensions/issues/14" if Gem::Version.new(FFI::VERSION) < Gem::Version.new("1.17.3")

command, event_suffix = data
event_name = "testfluentdwinsvc"
Expand Down
Loading