Skip to content

Commit

Permalink
Make sure libc6 is install
Browse files Browse the repository at this point in the history
  • Loading branch information
taybenlor committed Dec 28, 2024
1 parent 1d2aee0 commit c7eaae1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sandbox/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,9 @@ path = "hatch_build.py"

# Make sure deno is installed inside cibuildwheel containers
[tool.cibuildwheel.linux]
before-all = "curl -fsSL https://deno.land/install.sh | sh"
before-all = "yum install libc6 && curl -fsSL https://deno.land/install.sh | sh"
environment = { "PATH" = "$HOME/.deno/bin:$PATH" }

[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk add libc6"

0 comments on commit c7eaae1

Please sign in to comment.