Skip to content

Commit

Permalink
macOS CI/CD not currently working
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomnl committed May 9, 2024
1 parent 5a65c7d commit 463cb34
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/check-bioc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,21 @@ jobs:
BiocManager::repositories()
) else BiocManager::repositories()
# install suggested packages
BiocManager::install(c("MSnbase", "xcms", "BiocStyle", "msPurityData", "CAMERA"))
# Workaround for problems with cached S4objects in binary packages
BiocManager::install("GenomeInfoDb", force = TRUE, type = "source")
BiocManager::install("BiocParallel", force = TRUE, type = "source")
BiocManager::install("S4Vectors", force = TRUE, type = "source")
BiocManager::install("SummarizedExperiment", force = TRUE, type = "source")
## install xcms with dependencies - to ensure dependencies are installed from source;
## somehow install_local installs binary packages instead.
BiocManager::install("mzR", force = TRUE)
BiocManager::install("MSnbase", force = TRUE, type = "source")
BiocManager::install("xcms", force = TRUE, type = "source", dependencies = TRUE)
BiocManager::install(c("BiocStyle", "msPurityData", "CAMERA"))
install.packages(c("rmarkdown", "RPostgres", "RMySQL"))
## For running the checks
message(paste('****', Sys.time(), 'installing rcmdcheck and BiocCheck ****'))
install.packages(c("rcmdcheck", "BiocCheck"), repos = gha_repos)
Expand Down

0 comments on commit 463cb34

Please sign in to comment.