Skip to content

Commit

Permalink
add deps by hand
Browse files Browse the repository at this point in the history
  • Loading branch information
lgatto committed Dec 28, 2023
1 parent 36947a2 commit 168d421
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/check-bioc.yml
Expand Up @@ -207,11 +207,11 @@ jobs:
BiocManager::install("BiocCheck")
shell: Rscript {0}

- name: Install dependencies (manually)
run: |
## BiocManager::install("preprocessCore", configure.args="--disable-threading", force = TRUE, type = "source")
## BiocManager::install("magick", dependencies = TRUE, ask = FALSE, update=TRUE)
shell: Rscript {0}
# - name: Install dependencies (manually)
# run: |
# ## BiocManager::install("preprocessCore", configure.args="--disable-threading", force = TRUE, type = "source")
# ## BiocManager::install("magick", dependencies = TRUE, ask = FALSE, update=TRUE)
# shell: Rscript {0}

## See https://github.com/Bioconductor/bioconductor_docker/issues/22
- name: Manually install preprocessCore
Expand All @@ -220,6 +220,11 @@ jobs:
cd preprocessCore
R CMD INSTALL --configure-args="--disable-threading" .
- name: Install missing dependencies
run: |
BiocManager::install(c("Rcpp", "mzR", "S4Vectors", "PSMatch", "IRanges", "plyr", "vsn", "pcaMethods", "mzID", "ggplot2", "scales"), force = FALSE, type = "source")
shell: Rscript {0}

## - name: Install ProtGenerics from Github
## run: BiocManager::install("RforMassSpectrometry/ProtGenerics")
## shell: Rscript {0}
Expand Down

0 comments on commit 168d421

Please sign in to comment.