enable macOS in CI (#650)

This commit is contained in:
Adeeb Shihadeh
2025-09-06 17:30:11 -07:00
committed by GitHub
parent 7352ef9bff
commit 933390f17a
2 changed files with 3 additions and 3 deletions

View File

@@ -17,9 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# TODO: fixup macOS
#os: ['macos-latest', 'ubuntu-latest']
os: ['ubuntu-latest']
os: ['macos-latest', 'ubuntu-latest']
timeout-minutes: 10
steps:
- uses: actions/checkout@v4

View File

@@ -8,6 +8,8 @@ PLATFORM=$(uname -s)
echo "installing dependencies"
if [[ $PLATFORM == "Darwin" ]]; then
export ZMQ=1
export HOMEBREW_NO_AUTO_UPDATE=1
brew install python3 zeromq
elif [[ $PLATFORM == "Linux" ]]; then