Unverified Commit c182555d authored by James Lamb's avatar James Lamb Committed by GitHub
Browse files

[ci] ignore R CMD CHECK warnings on new R version (#3468)

* [ci] ignore R CMD CHECK warnings on new R version

* just update version
parent 332559c0
...@@ -18,8 +18,8 @@ if [[ "${R_MAJOR_VERSION}" == "3" ]]; then ...@@ -18,8 +18,8 @@ if [[ "${R_MAJOR_VERSION}" == "3" ]]; then
export R_LINUX_VERSION="3.6.3-1bionic" export R_LINUX_VERSION="3.6.3-1bionic"
export R_APT_REPO="bionic-cran35/" export R_APT_REPO="bionic-cran35/"
elif [[ "${R_MAJOR_VERSION}" == "4" ]]; then elif [[ "${R_MAJOR_VERSION}" == "4" ]]; then
export R_MAC_VERSION=4.0.2 export R_MAC_VERSION=4.0.3
export R_LINUX_VERSION="4.0.2-1.1804.0" export R_LINUX_VERSION="4.0.3-1.1804.0"
export R_APT_REPO="bionic-cran40/" export R_APT_REPO="bionic-cran40/"
else else
echo "Unrecognized R version: ${R_VERSION}" echo "Unrecognized R version: ${R_VERSION}"
......
...@@ -43,7 +43,7 @@ if ($env:R_MAJOR_VERSION -eq "3") { ...@@ -43,7 +43,7 @@ if ($env:R_MAJOR_VERSION -eq "3") {
$RTOOLS_INSTALL_PATH = "C:\rtools40" $RTOOLS_INSTALL_PATH = "C:\rtools40"
$env:RTOOLS_MINGW_BIN = "$RTOOLS_INSTALL_PATH/mingw64/bin" $env:RTOOLS_MINGW_BIN = "$RTOOLS_INSTALL_PATH/mingw64/bin"
$env:RTOOLS_EXE_FILE = "rtools40-x86_64.exe" $env:RTOOLS_EXE_FILE = "rtools40-x86_64.exe"
$env:R_WINDOWS_VERSION = "4.0.2" $env:R_WINDOWS_VERSION = "4.0.3"
} else { } else {
Write-Output "[ERROR] Unrecognized R version: $env:R_VERSION" Write-Output "[ERROR] Unrecognized R version: $env:R_VERSION"
Check-Output $false Check-Output $false
......
...@@ -163,8 +163,7 @@ jobs: ...@@ -163,8 +163,7 @@ jobs:
name: r-package (ubuntu-latest, R-devel, GCC ASAN/UBSAN) name: r-package (ubuntu-latest, R-devel, GCC ASAN/UBSAN)
timeout-minutes: 60 timeout-minutes: 60
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container: rhub/rocker-gcc-san
image: rhub/rocker-gcc-san
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v1 uses: actions/checkout@v1
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment