From 5f24138263e7ee150f3b7af6acd6e9c9f82f45b7 Mon Sep 17 00:00:00 2001 From: John Kerl Date: Thu, 28 Sep 2023 15:10:43 -0400 Subject: [PATCH] code-review feedback --- .github/workflows/r-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/r-ci.yml b/.github/workflows/r-ci.yml index fdb088aa93..f5652693ea 100644 --- a/.github/workflows/r-ci.yml +++ b/.github/workflows/r-ci.yml @@ -40,6 +40,16 @@ jobs: - name: Install BioConductor package SingleCellExperiment run: cd apis/r && tools/r-ci.sh install_bioc SingleCellExperiment + + # Given propagation delay for binaries at https://r2u.stat.illinois.edu/ubuntu/pool/dists/jammy/main/ + - name: Install r-universe build of tiledb-r (macOS) + if: ${{ matrix.os == 'macOS-latest' }} + run: cd apis/r && Rscript -e "install.packages('tiledb', repos = c('https://eddelbuettel.r-universe.dev', 'https://cloud.r-project.org'))" + + # Given propagation delay for binaries at https://r2u.stat.illinois.edu/ubuntu/pool/dists/jammy/main/ + - name: Install r-universe build of tiledb-r (linux) + if: ${{ matrix.os != 'macOS-latest' }} + run: cd apis/r && Rscript -e "options(bspm.version.check=TRUE); install.packages('tiledb', repos = c('https://eddelbuettel.r-universe.dev/bin/linux/jammy/4.3/', 'https://cloud.r-project.org'))" - name: Dependencies run: cd apis/r && tools/r-ci.sh install_all