1 parent 5cc5111 commit 173cb49Copy full SHA for 173cb49
1 file changed
.github/workflows/release.yaml
@@ -31,8 +31,11 @@ jobs:
31
args: --release --out dist
32
sccache: 'true'
33
manylinux: 2_28
34
- # Install build dependencies inside the manylinux_2_28 (AlmaLinux 8) container.
35
- before-script-linux: dnf install -y cmake perl-IPC-Cmd clang-devel
+ # Install build dependencies inside the container.
+ # x86_64 uses manylinux_2_28 (AlmaLinux/dnf), aarch64 cross uses Ubuntu (apt-get).
36
+ before-script-linux: >-
37
+ dnf install -y cmake perl-IPC-Cmd clang-devel ||
38
+ (apt-get update && apt-get install -y cmake libclang-dev)
39
40
- name: Upload wheels
41
uses: actions/upload-artifact@v4
0 commit comments