File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 7070 any::covr
7171 needs: check
7272
73+ - name: Install system dependencies (manually added)
74+ run: |
75+ # # 'plumber' fail to install 'sf', because 'units' fail to
76+ # # install due 'libudunits2-dev' missing
77+ if [[ "{{ matrix.config.pkg }}" == "plumber" ]]; then
78+ apt install -y libudunits2-dev
79+ fi
80+ # # 'shiny' fail at run time with "Error in `dyn.load(file, DLLpath
81+ # # = DLLpath, ...)`: unable to load shared object '/home/runner/
82+ # # work/_temp/Library/otelsdk/libs/otelsdk.so': libprotobuf.so.32:
83+ # # cannot open shared object file: No such file or directory
84+ if [[ "{{ matrix.config.pkg }}" == "shiny" ]]; then
85+ apt install -y libprotobuf32t64
86+ fi
87+
7388 - name: Install dependencies
7489 run: |
7590 remotes::install_deps(dependencies = TRUE)
You can’t perform that action at this time.
0 commit comments