Skip to content

Commit

Permalink
Update Ubuntu version for System dependency check
Browse files Browse the repository at this point in the history
docker run --rm -it bioconductor/bioconductor_docker:RELEASE_3_18 cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=22.04
DISTRIB_CODENAME=jammy
DISTRIB_DESCRIPTION="Ubuntu 22.04.3 LTS"
  • Loading branch information
sneumann authored Jan 25, 2024
1 parent 548c248 commit a4ffd22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-bioc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,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 = " "))')
sysreqs=$(Rscript -e 'cat("apt-get update -y && apt-get install -y", paste(gsub("apt-get install -y ", "", remotes::system_requirements("ubuntu", "22.04")), collapse = " "))')
echo $sysreqs
sudo -s eval "$sysreqs"
Expand Down

0 comments on commit a4ffd22

Please sign in to comment.