We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9238d9 commit 4d51f04Copy full SHA for 4d51f04
1 file changed
.github/workflows/release.yml
@@ -275,10 +275,13 @@ jobs:
275
puts "verify_linux ${{ matrix.platform }}/ruby${{ matrix.ruby }}: OK"
276
'
277
278
+ # Docker's default seccomp profile blocks io_uring_setup, which libxev
279
+ # uses on Linux. seccomp=unconfined matches what a real Alpine host
280
+ # would expose; this verify is standing in for one.
281
- name: Smoke test (musl, Alpine container)
282
if: matrix.alpine != ''
283
run: |
- docker run --rm -v "$PWD:/work" -w /work ruby:${{ matrix.alpine }}-alpine sh -c '
284
+ docker run --rm --security-opt seccomp=unconfined -v "$PWD:/work" -w /work ruby:${{ matrix.alpine }}-alpine sh -c '
285
gem install pkg/carbon_fiber-*-${{ matrix.platform }}.gem
286
ruby -e "
287
require \"carbon_fiber\"
0 commit comments