Skip which bundle test on mingw, mswin and ucrt

* See https://github.com/ruby/setup-ruby/issues/658
This commit is contained in:
Benoit Daloze
2024-11-05 12:06:00 +01:00
parent c6d4d2ab97
commit 217c988b8c
+7 -2
View File
@@ -143,9 +143,14 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/gem_from_github.gemfile
- name: which ruby, bundle
- name: which ruby
shell: bash
run: which -a ruby bundle
run: which -a ruby
- name: which bundle
shell: bash
run: which -a bundle
# https://github.com/ruby/setup-ruby/issues/658
if: "matrix.ruby != 'mingw' && matrix.ruby != 'mswin' && matrix.ruby != 'ucrt'"
- name: which rake
run: which -a rake
if: "!startsWith(matrix.os, 'windows')"