Skip to content

Commit

Permalink
add more configuration in r-cmd-check
Browse files Browse the repository at this point in the history
  • Loading branch information
ygeunkim committed Jan 30, 2025
1 parent c3e8416 commit 4771c26
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
- {os: macOS-latest, r: 'release'}

- {os: windows-latest, r: 'release'}
- {os: windows-latest, r: 'oldrel-3'} # change to oldrel-3 in Spring 2025
# rtools40's older compiler: R-4.0.0 to to R-4.1.3
- {os: windows-latest, r: '4.1'}

- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
Expand All @@ -40,7 +41,9 @@ jobs:

- name: Memory issue in R
if: ${{ (matrix.config.os == 'ubuntu-latest' && matrix.config.r == 'devel') || (matrix.config.os == 'windows-latest' && matrix.config.r == 'oldrel-3') }}
run: echo "MAKEFLAGS=-j1" >> $GITHUB_ENV
run: |
echo "MAKEFLAGS=-j1" >> $GITHUB_ENV
echo "R_MAX_VSIZE=8G" >> $GITHUB_ENV
- uses: r-lib/actions/setup-pandoc@v2

Expand Down

0 comments on commit 4771c26

Please sign in to comment.