Skip to content

Commit

Permalink
Reorder installation of arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
klevdiamanti committed May 22, 2024
1 parent f1ab46b commit 8288f63
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,19 @@ jobs:
forenv <- paste("R_BIOC_VERSION=", as.character(remotes::bioc_version()), sep = "")
write(forenv, file = Sys.getenv("GITHUB_ENV"), append = TRUE) # Store current value to ENV
shell: Rscript {0}

- name: Install arrow from runiverse for Mac OSX
run: |
if (Sys.info()[['sysname']] == "Darwin") {
install.packages('arrow', repos = c('https://apache.r-universe.dev', 'https://cloud.r-project.org'))
}
shell: Rscript {0}

- uses: r-lib/actions/setup-r-dependencies@v2
with:
working-directory: OlinkAnalyze
extra-packages: any::rcmdcheck

- name: Install arrow from runiverse for Mac OSX
run: |
if (Sys.info()[['sysname']] == "Darwin") {
remove.packages('arrow')
install.packages('arrow', repos = c('https://apache.r-universe.dev'))
}
shell: Rscript {0}

- uses: r-lib/actions/check-r-package@v2
with:
Expand Down

0 comments on commit 8288f63

Please sign in to comment.