Skip to content

Commit

Permalink
Merge pull request #594 from DrTimothyAldenDavis/dev2
Browse files Browse the repository at this point in the history
add ParU back into the macOS CI
  • Loading branch information
DrTimothyAldenDavis authored Dec 17, 2023
2 parents 0157bb3 + 6cf0fe1 commit 69dd5c1
Showing 1 changed file with 5 additions and 22 deletions.
27 changes: 5 additions & 22 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ concurrency: ci-${{ github.ref }}
env:
# string with name of libraries to be built
BUILD_LIBS: "SuiteSparse_config:Mongoose:AMD:BTF:CAMD:CCOLAMD:COLAMD:CHOLMOD:CSparse:CXSparse:LDL:KLU:UMFPACK:ParU:RBio:SPQR:SPEX:GraphBLAS:LAGraph"
# string with name of libraries to be checked
CHECK_LIBS: "SuiteSparse_config:Mongoose:AMD:BTF:CAMD:CCOLAMD:COLAMD:CHOLMOD:CSparse:CXSparse:LDL:KLU:UMFPACK:ParU:RBio:SPQR:SPEX:GraphBLAS:LAGraph"
CHECK_LIBS_MAC: "SuiteSparse_config:Mongoose:AMD:BTF:CAMD:CCOLAMD:COLAMD:CHOLMOD:CSparse:CXSparse:LDL:KLU:UMFPACK:RBio:SPQR:SPEX:GraphBLAS:LAGraph"


jobs:

Expand Down Expand Up @@ -89,24 +85,6 @@ jobs:
echo "::endgroup::"
done
# - name: check
# timeout-minutes: 20
# run: |
# # this check seems to hang intermittently at this point, before
# # printing the IFS statement and before running any 'make demos'.
# # Adding some debug echo statements here:
# echo "::group::Starting check (1)"
# echo "::endgroup::"
# echo "::group::Starting check (2)"
# IFS=':' read -r -a libs <<< "${CHECK_LIBS_MAC}"
# echo "::endgroup::"
# for lib in "${libs[@]}"; do
# printf "::group:: \033[0;32m==>\033[0m Checking library \033[0;32m${lib}\033[0m\n"
# cd ${GITHUB_WORKSPACE}/${lib}
# make demos
# echo "::endgroup::"
# done

- name: check_Mongoose
run: |
cd ${GITHUB_WORKSPACE}/Mongoose/build
Expand Down Expand Up @@ -189,6 +167,11 @@ jobs:
cd ${GITHUB_WORKSPACE}/LAGraph/build
ctest .
- name: check_ParU
run: |
cd ${GITHUB_WORKSPACE}/ParU
make demos
- name: ccache status
continue-on-error: true
run: ccache -s
Expand Down

0 comments on commit 69dd5c1

Please sign in to comment.