Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add ParU back into the macOS CI #594

Merged
merged 1 commit into from
Dec 17, 2023
Merged
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
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