Skip to content

Commit

Permalink
Fix OSX build.
Browse files Browse the repository at this point in the history
  • Loading branch information
skrah committed Apr 27, 2024
1 parent 3c81554 commit 76edff2
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,22 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: |
brew install python-build
brew install cmake
mkdir venv
python3 -m venv venv
venv/bin/python3 -m pip install build
cd xndlib
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
../venv/bin/python3 -m build .
cd ../ndtypes
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
../venv/bin/python3 -m build .
cd ../xnd
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
../venv/bin/python3 -m build .
cd ../gumath
git clone https://github.com/xnd-project/xnd source/xnd
python3 -m build .
../venv/bin/python3 -m build .
ubuntu_x64:
name: 'Ubuntu x64'
Expand Down

0 comments on commit 76edff2

Please sign in to comment.