diff --git a/github-actions/ci-dist/action.yml b/github-actions/ci-dist/action.yml index 0c6fd0d..c5a2908 100644 --- a/github-actions/ci-dist/action.yml +++ b/github-actions/ci-dist/action.yml @@ -386,7 +386,7 @@ runs: echo "::group::test (no coverage)" cd ${{ inputs.path }} if [ -f Makefile.PL ]; then - ( $TEST_RUNNER_PREFIX make && $TEST_RUNNER_PREFIX make test ) || exit 1 + ( $TEST_RUNNER_PREFIX make && (otool -hV blib/arch/auto/PDL/LinearAlgebra/Real/Real.bundle; $TEST_RUNNER_PREFIX make test) ) || exit 1 elif [ -f Build.PL ]; then ( $TEST_RUNNER_PREFIX $MYPERL Build test ) || exit 1 else diff --git a/github-actions/install-dep-lapack/action.yml b/github-actions/install-dep-lapack/action.yml index 431f325..3893a91 100644 --- a/github-actions/install-dep-lapack/action.yml +++ b/github-actions/install-dep-lapack/action.yml @@ -16,6 +16,6 @@ runs: run: | if ${{ toJSON( runner.os == 'macOS' ) }}; then echo "::group::Install LAPACK (via brew)" - brew install lapack + brew install openblas echo "::endgroup::" fi