Skip to content

Commit

Permalink
Always install known problematic packages on macos with brew
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Sep 9, 2024
1 parent fa00bcb commit 33e0aa0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/internal/install-shinyverse/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,13 @@ runs:
sort(unique(unlist(unname(shinycoreci:::apps_deps_map)))),
shinycoreci:::shinyverse_pkgs
)
deps <- paste0(deps, collapse = " ")
cat("Deps found:\n"); str(deps)
cat("pkgs=", deps, "\n", file = Sys.getenv("GITHUB_OUTPUT"), sep = "", append = TRUE)
cat("Deps found:\n", paste0("* ", deps, collapse = "\n"), "\n", sep = "")
out_deps <- paste0(deps, collapse = " ")
cat("pkgs=", out_deps, "\n", file = Sys.getenv("GITHUB_OUTPUT"), sep = "", append = TRUE)
- name: Install mac system dependencies for app packages
if: runner.os == 'macOS'
uses: rstudio/shiny-workflows/setup-macOS-dependencies@v1
with:
extra-packages: ${{ steps.mac-deps.outputs.pkgs }}
extra-packages: ${{ steps.mac-deps.outputs.pkgs }} terra Cairo FreeType RMySQL textshaping units

0 comments on commit 33e0aa0

Please sign in to comment.