@@ -459,10 +459,8 @@ jobs:
459
459
with :
460
460
name : generic-gem
461
461
path : gems
462
- - run : |
463
- gem install --verbose --no-document gems/*.gem -- --${{matrix.sys}}-system-libraries
464
- gem list -d nokogiri
465
- nokogiri -v
462
+ - run : ./scripts/test-gem-install gems --${{matrix.sys}}-system-libraries
463
+ shell : bash
466
464
467
465
generic-windows-install-ucrt :
468
466
needs : ["generic-package"]
@@ -483,10 +481,8 @@ jobs:
483
481
with :
484
482
name : generic-gem
485
483
path : gems
486
- - run : |
487
- gem install --verbose --no-document gems/*.gem -- --${{matrix.sys}}-system-libraries
488
- gem list -d nokogiri
489
- nokogiri -v
484
+ - run : ./scripts/test-gem-install gems --${{matrix.sys}}-system-libraries
485
+ shell : bash
490
486
491
487
cruby-package :
492
488
needs : ["rcd_image_version"]
@@ -654,17 +650,18 @@ jobs:
654
650
ruby : ["2.6", "2.7", "3.0"]
655
651
runs-on : windows-latest
656
652
steps :
653
+ - uses : actions/checkout@v2
654
+ with :
655
+ submodules : true
657
656
- uses : ruby/setup-ruby@v1
658
657
with :
659
658
ruby-version : " ${{matrix.ruby}}"
660
659
- uses : actions/download-artifact@v3
661
660
with :
662
661
name : cruby-x64-mingw32-gem
663
662
path : gems
664
- - run : |
665
- gem install --verbose --no-document gems/*.gem
666
- gem list -d nokogiri
667
- nokogiri -v
663
+ - run : ./scripts/test-gem-install gems
664
+ shell : bash
668
665
669
666
cruby-x64-mingw-ucrt-install :
670
667
needs : ["cruby-package"]
@@ -674,17 +671,18 @@ jobs:
674
671
ruby : ["3.1"]
675
672
runs-on : windows-2022
676
673
steps :
674
+ - uses : actions/checkout@v2
675
+ with :
676
+ submodules : true
677
677
- uses : ruby/setup-ruby@v1
678
678
with :
679
679
ruby-version : " ${{matrix.ruby}}"
680
680
- uses : actions/download-artifact@v3
681
681
with :
682
682
name : cruby-x64-mingw-ucrt-gem
683
683
path : gems
684
- - run : |
685
- gem install --verbose --no-document gems/*.gem
686
- gem list -d nokogiri
687
- nokogiri -v
684
+ - run : ./scripts/test-gem-install gems
685
+ shell : bash
688
686
689
687
jruby-package :
690
688
needs : ["rcd_image_version"]
0 commit comments