We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3586372 commit 77b1aaaCopy full SHA for 77b1aaa
1 file changed
github-actions/install-dep-pdl-dep/action.yml
@@ -12,6 +12,7 @@ runs:
12
echo "::endgroup::"
13
elif ${{ toJSON( runner.os == 'macOS' ) }}; then
14
echo "::group::Install main PDL deps (via brew)"
15
+ brew update
16
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install proj netpbm gsl
17
18
fi
@@ -20,7 +21,8 @@ runs:
20
21
run: |
22
if ${{ toJSON( runner.os == 'Linux' || runner.os == 'macOS' ) }}; then
23
echo "::group::Install extra optional main PDL deps (via cpanm)"
- cpanm -n Term::ReadLine::Gnu Alien::HDF4 Alien::proj Inline::C || cat ~/.cpanm/build.log
24
+ cpanm -n Term::ReadLine::Gnu Alien::HDF4 Inline::C || cat ~/.cpanm/build.log
25
+ cpanm -n --reinstall Alien::proj || cat ~/.cpanm/build.log # in case has old path
26
27
28
- name: Install OpenGL PDL deps
0 commit comments