Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] test against R 4.2 for macOS and Linux CI jobs #5484

Merged
merged 3 commits into from
Sep 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ci/test_r_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ if [[ "${R_MAJOR_VERSION}" == "3" ]]; then
export R_LINUX_VERSION="3.6.3-1bionic"
export R_APT_REPO="bionic-cran35/"
elif [[ "${R_MAJOR_VERSION}" == "4" ]]; then
export R_MAC_VERSION=4.1.3
export R_MAC_VERSION=4.2.1
export R_MAC_PKG_URL=${CRAN_MIRROR}/bin/macosx/base/R-${R_MAC_VERSION}.pkg
export R_LINUX_VERSION="4.1.3-1.2004.0"
export R_LINUX_VERSION="4.2.1-1.2004.0"
export R_APT_REPO="focal-cran40/"
else
echo "Unrecognized R version: ${R_VERSION}"
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/r_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- os: ubuntu-latest
task: r-package
compiler: gcc
r_version: 4.1
r_version: 4.2
build_type: cmake
- os: ubuntu-latest
task: r-package
Expand All @@ -50,7 +50,7 @@ jobs:
- os: ubuntu-latest
task: r-package
compiler: clang
r_version: 4.1
r_version: 4.2
build_type: cmake
- os: macOS-latest
task: r-package
Expand All @@ -60,7 +60,7 @@ jobs:
- os: macOS-latest
task: r-package
compiler: gcc
r_version: 4.1
r_version: 4.2
build_type: cmake
- os: macOS-latest
task: r-package
Expand All @@ -70,7 +70,7 @@ jobs:
- os: macOS-latest
task: r-package
compiler: clang
r_version: 4.1
r_version: 4.2
build_type: cmake
- os: windows-latest
task: r-package
Expand Down Expand Up @@ -116,20 +116,20 @@ jobs:
- os: ubuntu-latest
task: r-package
compiler: gcc
r_version: 4.1
r_version: 4.2
build_type: cran
- os: macOS-latest
task: r-package
compiler: clang
r_version: 4.1
r_version: 4.2
build_type: cran
################
# Other checks #
################
- os: ubuntu-latest
task: r-rchk
compiler: gcc
r_version: 4.1
r_version: 4.2
build_type: cran
steps:
- name: Prevent conversion of line endings on Windows
Expand Down