Skip to content
Open
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
14 changes: 13 additions & 1 deletion dev/tasks/r/github.linux.cran.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,25 @@ jobs:
env:
{{ macros.github_set_sccache_envvars()|indent(8)}}
# setting ARROW_SOURCE_HOME='' here ensures that we use the cpp source copied into tools/
run: archery docker run -e ARROW_SOURCE_HOME='' -e SKIP_VIGNETTES={{ '${{ matrix.config.skip_vignettes }}' }} r
run: >
archery docker run
-e ARROW_SOURCE_HOME=''
-e SKIP_VIGNETTES={{ '${{ matrix.config.skip_vignettes }}' }}
-e _R_CHECK_CRAN_INCOMING_=false
r
- name: Dump install logs
run: cat arrow/r/check/arrow.Rcheck/00install.out
if: always()
- name: Dump test logs
run: cat arrow/r/check/arrow.Rcheck/tests/testthat.Rout*
if: always()
- name: Check for R CMD check NOTES
run: |
if grep -q "^.* checking .* \\.\\.\\. NOTE$" arrow/r/check/arrow.Rcheck/00check.log; then
echo "Found R CMD check NOTE(s) in output:"
grep -n -A8 "^.* checking .* \\.\\.\\. NOTE$" arrow/r/check/arrow.Rcheck/00check.log
exit 1
fi
- name: Save the test output
if: always()
uses: actions/upload-artifact@v4
Expand Down
Loading