File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ jobs:
335335 docker run --rm -v "$(pwd):/re2" -w /re2 \
336336 --platform=linux/arm64 \
337337 ruby:${{ matrix.ruby }}-alpine \
338- ./scripts/test-gem-install ${{ matrix.rubygems }}
338+ /bin/sh -c "apk update && apk add libstdc++ && ./scripts/test-gem-install ${{ matrix.rubygems }}"
339339
340340 test-precompiled-arm-linux-gnu :
341341 needs : " precompile-arm-linux-gnu"
@@ -393,7 +393,7 @@ jobs:
393393 docker run --rm -v "$(pwd):/re2" -w /re2 \
394394 --platform=linux/arm/v7 \
395395 ruby:${{ matrix.ruby }}-alpine \
396- ./scripts/test-gem-install ${{ matrix.rubygems }}
396+ /bin/sh -c "apk update && apk add libstdc++ && ./scripts/test-gem-install ${{ matrix.rubygems }}"
397397
398398 test-precompiled-x86-linux-gnu :
399399 needs : " precompile-x86-linux-gnu"
@@ -451,7 +451,7 @@ jobs:
451451 docker run --rm -v "$(pwd):/re2" -w /re2 \
452452 --platform=linux/386 \
453453 ruby:${{ matrix.ruby }}-alpine \
454- ./scripts/test-gem-install ${{ matrix.rubygems }}
454+ /bin/sh -c "apk update && apk add libstdc++ && ./scripts/test-gem-install ${{ matrix.rubygems }}"
455455
456456 test-precompiled-x86_64-linux-gnu :
457457 needs : " precompile-x86_64-linux-gnu"
You can’t perform that action at this time.
0 commit comments