From c6a4961307eb19da8c1ececceacac5d796131c5e Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Thu, 14 Mar 2024 23:03:57 -0400 Subject: [PATCH] Remove macos brew installs for now --- .../internal/install-shinyverse/action.yaml | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/internal/install-shinyverse/action.yaml b/.github/internal/install-shinyverse/action.yaml index 675bc0552d..5b5257ae5b 100644 --- a/.github/internal/install-shinyverse/action.yaml +++ b/.github/internal/install-shinyverse/action.yaml @@ -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'