Skip to content

Commit 7ca25c4

Browse files
committed
dsf
Signed-off-by: Rodrigo Tobar <rtobar@icrar.org>
1 parent 8623afd commit 7ca25c4

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,24 @@ jobs:
3838
http-user-agent: ${{ matrix.config.http-user-agent }}
3939
use-public-rspm: true
4040

41+
- name: "Install missing system packages in Ubuntu"
42+
if: runner.os == 'ubuntu-latest'
43+
run: apt update && apt install libglpk40
44+
45+
- name: "Install XQuartz in macOS"
46+
if: runner.os == 'macOS-latest'
47+
run: |
48+
brew update
49+
brew install --cask xquartz
50+
51+
4152
- name: Install dependencies
4253
run: |
4354
install.packages('remotes')
4455
install.packages('hdf5r')
4556
install.packages('knitr')
4657
install.packages('rmarkdown')
47-
remotes::install_github("asgr/imager", ref="low-depend") #to make sure we have the easy to install one, not CRAN
58+
install.packages('imager')
4859
remotes::install_deps(dependencies = TRUE)
4960
remotes::install_cran("rcmdcheck")
5061
remotes::install_github("asgr/Rwcs", ref="master")

0 commit comments

Comments
 (0)