We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bdb00f commit b864583Copy full SHA for b864583
1 file changed
.github/workflows/build-wheels.yaml
@@ -23,11 +23,14 @@ jobs:
23
24
- name: Install build tools (Linux only)
25
if: runner.os == 'Linux'
26
- run: sudo apt-get install -y build-essential cmake pkg-config ninja-build nasm
+ run: |
27
+ sudo apt-get update
28
+ sudo apt-get install -y build-essential cmake pkg-config ninja-build autoconf automake libtool
29
30
- name: Install build tools (macOS only)
31
if: runner.os == 'macOS'
- run: brew install cmake pkg-config nasm ninja
32
33
+ brew install cmake pkg-config ninja
34
35
- name: Install build dependencies
36
run: |
0 commit comments