diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index a19d6dc..95c8d9b 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -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" diff --git a/suitesparse.sh b/suitesparse.sh index d12cddc..2e5f86e 100755 --- a/suitesparse.sh +++ b/suitesparse.sh @@ -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.