Skip to content

Commit e887fe4

Browse files
committed
Merge branch 'v4.y-ci-windows' into ci-windows
2 parents 024f5df + 96be379 commit e887fe4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/actions.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
matrix:
1717
ruby: [ '2.5', '2.6', '2.7', '3.0', '3.1', 'ruby-head', 'truffleruby-head' ]
1818
os_and_command:
19-
- os: 'macos-latest'
19+
- os: macos-latest
20+
command: 'env TESTOPTS="--verbose" bundle exec rake test'
21+
- os: windows-latest
2022
command: 'env TESTOPTS="--verbose" bundle exec rake test'
2123
- os: ubuntu-latest
2224
# Sometimes minitest starts and then just hangs printing nothing.
@@ -35,7 +37,6 @@ jobs:
3537
with:
3638
ruby-version: ${{ matrix.ruby }}
3739
bundler-cache: false # disable running 'bundle install' and caching installed gems see https://github.com/httprb/http/issues/572
38-
- run: gem install rake bundler
3940
- run: bundle install
4041
- run: ${{ matrix.os_and_command.command }}
4142
timeout-minutes: 10

kubeclient.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ Gem::Specification.new do |spec|
3030
spec.add_development_dependency('mocha', '~> 1.5')
3131
spec.add_development_dependency 'openid_connect', '~> 1.1'
3232
spec.add_development_dependency 'net-smtp'
33+
# needed on Windows, at least for openid_connect
34+
spec.add_development_dependency 'tzinfo-data'
3335

3436
spec.add_dependency 'faraday', '~> 1.1'
3537
spec.add_dependency 'faraday_middleware', '~> 1.0'

0 commit comments

Comments
 (0)