Skip to content

Commit

Permalink
mac: build.yaml debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Dec 15, 2023
1 parent 5fbfe21 commit 2c92f73
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,16 @@ jobs:
done
- name: check
timeout-minutes: 40
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}
Expand Down
2 changes: 1 addition & 1 deletion LAGraph/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ verbose_test: library
( cd build && ctest . --verbose || ctest . --rerun-failed --output-on-failure )

# target used in CI
demos: test
demos: verbose_test

# just compile after running cmake; do not run cmake again
remake:
Expand Down

0 comments on commit 2c92f73

Please sign in to comment.