Skip to content
Open
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
1 change: 1 addition & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
- {os: ubuntu-24.04, ruby: '3.4'}
- {os: ubuntu-24.04, ruby: 'jruby-9.4.8.0'}
- {os: ubuntu-24.04, ruby: 'jruby-9.4.14.0'}
- {os: ubuntu-24.04, ruby: 'jruby-10.0.4.0'}
- {os: windows-2025, ruby: '3.2'}
- {os: windows-2025, ruby: '3.3'}
- {os: windows-2025, ruby: '3.4'}
Expand Down
12 changes: 8 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ group(:features) do
# requires native ldap headers/libs
# gem 'ruby-ldap', '~> 0.9', require: false, platforms: [:ruby]
gem 'openvoxserver-ca', '~> 3.0', require: false
gem 'syslog', '>= 0.1.1', '< 1', require: false, platforms: [:ruby]
gem 'syslog', '>= 0.1.1', '< 1', require: false
gem 'CFPropertyList', ['>= 3.0.6', '< 4'], require: false
end

Expand Down Expand Up @@ -90,9 +90,13 @@ group(:documentation, optional: true) do
gem 'pandoc-ruby', require: false, platforms: [:ruby]
end

group :release, optional: true do
gem 'faraday-retry', require: false
gem 'github_changelog_generator', require: false, git: 'https://github.com/voxpupuli/github-changelog-generator', branch: 'avoid-processing-a-single-commit-multiple-time'
# exlude the windows platform, faraday doesn't install properly on it
# and we only generate the changelog in github linux runners
platforms :ruby do
group :release, optional: true do
gem 'faraday-retry', require: false
gem 'github_changelog_generator', require: false, git: 'https://github.com/voxpupuli/github-changelog-generator', branch: 'avoid-processing-a-single-commit-multiple-time'
end
end

if File.exist? "#{__FILE__}.local"
Expand Down
Loading