Skip to content

Commit

Permalink
Remove macos brew installs for now
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Mar 15, 2024
1 parent e996e77 commit c6a4961
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/internal/install-shinyverse/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,20 @@ runs:
sudo apt-get update
sudo apt-get install -y libglpk-dev
- name: Get app packages dependencies
id: app-deps
if: runner.os == 'macOS'
shell: Rscript {0}
run: |
source("R/data-apps-deps.R")
cat("pkgs=", apps_deps, "\n", file = Sys.getenv("GITHUB_OUTPUT"), sep = "", append = TRUE)
# Must be done as packages are installed freely during testing
- name: Install macOS brew dependencies for all apps
uses: rstudio/shiny-workflows/setup-macOS-dependencies@v1
if: ${{ runner.os == 'macOS' }}
with:
extra-packages: |
${{ steps.app-deps.outputs.pkgs }}
# - name: Get app packages dependencies
# id: app-deps
# if: runner.os == 'macOS'
# shell: Rscript {0}
# run: |
# source("R/data-apps-deps.R")
# cat("pkgs=", apps_deps, "\n", file = Sys.getenv("GITHUB_OUTPUT"), sep = "", append = TRUE)
# # Must be done as packages are installed freely during testing
# - name: Install macOS brew dependencies for all apps
# uses: rstudio/shiny-workflows/setup-macOS-dependencies@v1
# if: ${{ runner.os == 'macOS' }}
# with:
# extra-packages: |
# ${{ steps.app-deps.outputs.pkgs }}

- name: Rtools version
if: runner.os == 'Windows'
Expand Down

0 comments on commit c6a4961

Please sign in to comment.