Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ jobs:
CIBW_BUILD_VERBOSITY: 3

# Build SuiteSparse
# CIBW_BEFORE_ALL: bash suitesparse.sh ${{ github.ref }}
# TODO
CIBW_BEFORE_ALL: bash suitesparse.sh refs/tags/7.4.3.0
CIBW_BEFORE_ALL: bash suitesparse.sh ${{ github.ref }}

# CMAKE_GNUtoMS=ON asks suitesparse.sh to build libraries in MSVC style on Windows.
CIBW_ENVIRONMENT_WINDOWS: CMAKE_GNUtoMS=ON GRAPHBLAS_PREFIX="C:/GraphBLAS"
Expand Down
6 changes: 3 additions & 3 deletions suitesparse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ cd GraphBLAS-${VERSION}/build
# echo "#define GxB_NO_FP64 1" >> ../Source/GB_control.h #
echo "#define GxB_NO_FC32 1" >> ../Source/GB_control.h #
echo "#define GxB_NO_FC64 1" >> ../Source/GB_control.h #
echo "#define GxB_NO_INT16 1" >> ../Source/GB_control.h
echo "#define GxB_NO_INT32 1" >> ../Source/GB_control.h
# echo "#define GxB_NO_INT16 1" >> ../Source/GB_control.h
# echo "#define GxB_NO_INT32 1" >> ../Source/GB_control.h
# echo "#define GxB_NO_INT64 1" >> ../Source/GB_control.h #
# echo "#define GxB_NO_INT8 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT16 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT32 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT64 1" >> ../Source/GB_control.h
# echo "#define GxB_NO_UINT64 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT8 1" >> ../Source/GB_control.h

# Disable all Source/Generated2 kernels. For workflow development only.
Expand Down