Files
runner-images/images/linux/scripts/installers/r.sh
T

15 lines
394 B
Bash
Raw Normal View History

2020-10-07 13:49:40 +05:00
#!/bin/bash -e
2020-07-21 11:18:11 +03:00
# Source the helpers for use with the script
2020-07-31 14:31:00 +03:00
source $HELPER_SCRIPTS/os.sh
2020-07-21 11:18:11 +03:00
# install R
2020-07-31 14:31:00 +03:00
osLabel=$(getOSVersionLabel)
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $osLabel-cran40/"
sudo apt update
sudo apt install r-base
2020-12-29 10:02:46 +03:00
invoke_tests "Tools" "R"