paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1405597428
The error shown is:
```
checking tests ... [0m/90m] ERROR
Running ‘testthat.R’
```
Which looks to me like something timed out?
I tried a bunch of things around
```dockerfile
FROM fedora:36
RUN dnf install -y R git llvm clang
RUN mkdir ~/.R && \
echo 'CXX11=clang++ -std=c++11' > ~/.R/Makevars && \
echo 'CXX14=clang++ -std=c++14' >> ~/.R/Makevars && \
echo 'CXX17=clang++ -std=c++17' >> ~/.R/Makevars && \
echo 'CXX20=clang++ -std=c++20' >> ~/.R/Makevars && \
echo 'CXX=clang++ -std=c++11' >> ~/.R/Makevars && \
echo 'CC=clang' >> ~/.R/Makevars
RUN R -e 'Sys.setenv(ARROW_R_DEV="true"); install.packages(c("arrow",
"testthat", "dplyr", "stringr", "lubridate", "hms"), repos =
"https://cloud.r-project.org/")'
RUN git clone https://github.com/apache/arrow.git /arrow && cd /arrow && git
checkout tags/apache-arrow-10.0.1
RUN cd /arrow/r/tests && R -e 'Sys.setenv(ARROW_R_DEV="true");
source("testthat.R")'
```
...but haven't been able to make anything hang yet. That's not quite
right...it's clang-14 and the first time I did it I was missing some packages.
Fedora 37 was released recently too and he may have updated without updating
the "check environments" page.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]