Skip to content

Commit b864583

Browse files
fix build tools install
1 parent 4bdb00f commit b864583

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/build-wheels.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ jobs:
2323

2424
- name: Install build tools (Linux only)
2525
if: runner.os == 'Linux'
26-
run: sudo apt-get install -y build-essential cmake pkg-config ninja-build nasm
26+
run: |
27+
sudo apt-get update
28+
sudo apt-get install -y build-essential cmake pkg-config ninja-build autoconf automake libtool
2729
2830
- name: Install build tools (macOS only)
2931
if: runner.os == 'macOS'
30-
run: brew install cmake pkg-config nasm ninja
32+
run: |
33+
brew install cmake pkg-config ninja
3134
3235
- name: Install build dependencies
3336
run: |

0 commit comments

Comments
 (0)