From 76edff220727ad1a615a5b1d5e63db31dc18fe84 Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Sat, 27 Apr 2024 14:57:45 +0200 Subject: [PATCH] Fix OSX build. --- .github/workflows/build.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 21296c6..eec6852 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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'