File tree Expand file tree Collapse file tree 2 files changed +14
-9
lines changed
Expand file tree Collapse file tree 2 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 1515 BUNDLE_WITHOUT : " krb5 libvirt"
1616
1717jobs :
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
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
Original file line number Diff line number Diff line change 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'
You can’t perform that action at this time.
0 commit comments