From 9899df4e94c8cba0c06af8cacb2076ef08fb67a8 Mon Sep 17 00:00:00 2001 From: Thomas Kuntz Date: Mon, 5 Jun 2023 16:26:05 -0400 Subject: [PATCH] Remove RSPM from linux build test --- .github/workflows/main.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e3dd8a2..8f4b5e8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,14 +40,13 @@ jobs: fail-fast: false matrix: config: - - { os: ubuntu-latest, cont: "bioconductor/bioconductor_docker", rspm: "https://packagemanager.rstudio.com/cran/__linux__/jammy/latest" } + - { os: ubuntu-latest, cont: "bioconductor/bioconductor_docker" } - { os: macOS-latest } - { os: windows-latest } ## Check https://github.com/r-lib/actions/tree/master/examples ## for examples using the http-user-agent env: R_REMOTES_NO_ERRORS_FROM_WARNINGS: true - RSPM: ${{ matrix.config.rspm }} NOT_CRAN: true TZ: UTC @@ -77,9 +76,7 @@ jobs: - name: Install Linux system dependencies if: runner.os == 'Linux' run: | - sysreqs=$(Rscript -e 'cat("apt-get update -y && apt-get install -y", paste(gsub("apt-get install -y ", "", remotes::system_requirements("ubuntu", "20.04")), collapse = " "))') - echo $sysreqs - sudo -s eval "$sysreqs" + apt-get update -y && apt-get install -y make cmake libicu-dev zlib1g-dev pandoc - name: Install macOS system dependencies if: matrix.config.os == 'macOS-latest'