Skip to content

Commit 57a5f15

Browse files
committed
Use yasm for testing and building the wheel for MacOS.
1 parent 4024b16 commit 57a5f15

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ jobs:
8181
run: sudo apt install yasm
8282
if: runner.os == 'Linux'
8383
- name: Install build dependencies (Macos)
84-
run: brew install nasm automake autoconf
84+
# Install yasm because nasm does not work when building wheels.
85+
# Probably because of nasm-filter.sh not filtering all flags that can not be used.
86+
run: brew install yasm automake autoconf
8587
if: runner.os == 'macOS'
8688
- name: Set MSVC developer prompt
8789
uses: ilammy/[email protected]
@@ -141,7 +143,7 @@ jobs:
141143
- name: Install cibuildwheel twine wheel
142144
run: python -m pip install cibuildwheel twine wheel
143145
- name: Install build dependencies (Macos)
144-
run: brew install nasm automake autoconf
146+
run: brew install yasm automake autoconf
145147
if: runner.os == 'macOS'
146148
- name: Set MSVC developer prompt
147149
uses: ilammy/[email protected]

0 commit comments

Comments
 (0)