Skip to content

Commit bd5395d

Browse files
committed
macos build
1 parent da302eb commit bd5395d

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,22 +94,21 @@ jobs:
9494
echo "wheel=$WHEEL" >> $GITHUB_OUTPUT
9595
9696
- name: Create venv and install dependencies (Unix)
97-
if: runner.os != 'Windows'
97+
if: runner.os != 'Linux'
9898
run: |
9999
uv venv .test-venv
100100
source .test-venv/bin/activate
101101
uv pip install rtc-wheel/*.whl ./livekit-api ./livekit-protocol
102102
uv pip install pytest pytest-asyncio numpy matplotlib
103103
104-
# - name: Create venv and install dependencies (macOS)
105-
# if: runner.os == 'macOS'
106-
# run: |
107-
# uv venv .test-venv
108-
# source .test-venv/bin/activate
109-
# # Use pip for wheel install to avoid uv's strict platform compatibility check
110-
# pip install "${{ steps.select-wheel-macos.outputs.wheel }}"
111-
# uv pip install ./livekit-api ./livekit-protocol
112-
# uv pip install pytest pytest-asyncio numpy matplotlib
104+
- name: Create venv and install dependencies (macOS)
105+
if: runner.os == 'macOS'
106+
run: |
107+
uv venv .test-venv
108+
source .test-venv/bin/activate
109+
uv pip install "${{ steps.select-wheel-macos.outputs.wheel }}"
110+
uv pip install ./livekit-api ./livekit-protocol
111+
uv pip install pytest pytest-asyncio numpy matplotlib
113112
114113
- name: Create venv and install dependencies (Windows)
115114
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)