Skip to content

Commit

Permalink
Install missing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
diegovalle committed Feb 10, 2024
1 parent 297ab4e commit 8b710e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/R-CMD-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ jobs:
- name: test site
if: matrix.config.r == 'release' && matrix.config.os == 'ubuntu-20.04'
run: |
Rscript -e "remotes::install_cran('rgdal')"
Rscript -e "remotes::install_cran('rgeos', type = 'source', force = TRUE)"
Rscript -e "remotes::install_cran('maptools', type = 'source', force = TRUE)"
Rscript -e "remotes::install_cran('rgdal', repos='https://cloud.r-project.org/')"
Rscript -e "remotes::install_cran('rgeos', repos='https://cloud.r-project.org/')"
Rscript -e "remotes::install_cran('maptools', repos='https://cloud.r-project.org/')"
Rscript -e "tryCatch({install.packages(c('remotes', 'sf', 'rgdal', 'rgeos', 'geojsonio', 'ggrepel', 'leaflet', 'jsonlite', 'maptools'), type = 'source');install.packages('V8', repos = 'http://cran.r-project.org'); remotes::install_github('r-lib/pkgdown'); remotes::install_github('diegovalle/mxmaps');remotes::install_github('Eflores89/inegiR');pkgdown::build_site()}, error = function(e) {quit(status=1)})"
- name: coveralls
Expand Down

0 comments on commit 8b710e5

Please sign in to comment.