Skip to content

Commit 2e45ba6

Browse files
committed
Test run
1 parent 0c16aa9 commit 2e45ba6

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

.github/workflows/windows.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,25 @@ env:
1515
BUNDLE_WITHOUT: "krb5 libvirt"
1616

1717
jobs:
18+
setup_matrix:
19+
name: Setup matrix
20+
runs-on: windows-latest
21+
outputs:
22+
matrix: ${{ steps.build_matrix.outputs.matrix }}
23+
steps:
24+
- name: Build test matrix
25+
id: build_matrix
26+
uses: theforeman/gha-matrix-builder@v0
27+
1828
bundle-smart-proxy:
1929
runs-on: windows-latest
30+
needs:
31+
- setup_matrix
2032
defaults:
2133
run:
2234
shell: pwsh
2335
strategy:
24-
matrix:
25-
rubyversion: ['3.3', '3.4']
26-
36+
matrix: ${{ fromJson(needs.setup_matrix.outputs.matrix) }}
2737
steps:
2838
- name: Checkout this repo
2939
uses: actions/checkout@v4
@@ -40,11 +50,6 @@ jobs:
4050
gem -v
4151
ridk version
4252
43-
- name: Bundle install smart-proxy
44-
run: |
45-
bundle config set path vendor/bundle
46-
bundle install --jobs 4
47-
4853
- name: Rake sanity
4954
run: |
5055
bundle exec rake -T

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ end
1010

1111
# Changed from a default gem to a bundled gem in Ruby 3.4
1212
# See: https://stdgems.org/new-in/3.4/
13-
gem 'syslog', :platforms => [:ruby] if RUBY_VERSION >= '3.4'
13+
gem 'syslog', '>= 0.3.0' if RUBY_VERSION >= '3.4'

0 commit comments

Comments
 (0)