Skip to content

Commit

Permalink
Try installing to . instead of /tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
alugowski committed Jun 2, 2024
1 parent 2580a67 commit fa0e837
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,13 @@ jobs:
CIBW_ENVIRONMENT_PASS_LINUX: SUITESPARSE_FAST_BUILD SUITESPARSE_FASTEST_BUILD

# CMAKE_GNUtoMS=ON asks suitesparse.sh to build libraries in MSVC style on Windows.
CIBW_ENVIRONMENT_WINDOWS: CMAKE_GNUtoMS=ON GRAPHBLAS_PREFIX="C:/GraphBLAS"
CIBW_ENVIRONMENT_WINDOWS: GRAPHBLAS_PREFIX="C:/GraphBLAS" CMAKE_GNUtoMS=ON

# macOS libomp requires special configs. BREW_LIBOMP=1 asks suitesparse.sh to include them.
# SUITESPARSE_MACOS_ARCH asks to build a particular architecture. Either x86 or arm64.
CIBW_ENVIRONMENT_MACOS: BREW_LIBOMP="1" SUITESPARSE_MACOS_ARCH=${{ matrix.cibw_archs }} GRAPHBLAS_PREFIX="/tmp/graphblas"
CIBW_ENVIRONMENT_MACOS: GRAPHBLAS_PREFIX="./graphblas" BREW_LIBOMP="1" SUITESPARSE_MACOS_ARCH=${{ matrix.cibw_archs }}

CIBW_ENVIRONMENT_LINUX: GRAPHBLAS_PREFIX="/tmp/graphblas"
CIBW_ENVIRONMENT_LINUX: GRAPHBLAS_PREFIX="./graphblas"

# Uncomment to only build CPython wheels
# CIBW_BUILD: "cp*"
Expand Down

0 comments on commit fa0e837

Please sign in to comment.