Skip to content

Commit

Permalink
update check action
Browse files Browse the repository at this point in the history
  • Loading branch information
adokter committed Jan 9, 2025
1 parent 1e8ed5f commit e40f530
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,15 @@ jobs:
- name: Install Linux system dependencies
if: runner.os == 'Linux'
run: |
pak::local_system_requirements(execute = TRUE)
pak::pkg_system_requirements("rcmdcheck", execute = TRUE)
pak::pkg_system_requirements("proj4", execute = TRUE) # Using same proj for now...
pak::pkg_system_requirements("hdf5r", execute = TRUE) # Using same hdf5 for now...
pak::pkg_sysreqs("local::.", dependencies = TRUE)$install_script
pak::pkg_sysreqs("rcmdcheck")$install_scripts
pak::pkg_sysreqs("proj4")$install_scripts
pak::pkg_sysreqs("hdf5r")$install_scripts
#pak::local_system_requirements(execute = TRUE)
#pak::pkg_system_requirements("rcmdcheck", execute = TRUE)
#pak::pkg_system_requirements("proj4", execute = TRUE) # Using same proj for now...
#pak::pkg_system_requirements("hdf5r", execute = TRUE) # Using same hdf5 for now...
shell: Rscript {0}
- name: Install dependencies
run: |
Expand Down

0 comments on commit e40f530

Please sign in to comment.