Skip to content

Commit 00aa9c3

Browse files
authored
chore(ci): re-add extra packages into Ubuntu image (#419)
The missing tools are causing the docs and coverage CI jobs to fail!
1 parent 22eab6b commit 00aa9c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/docker/ubuntu.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ ENV NANOARROW_PYTHON_VENV "/venv"
3939
# Locale required for R CMD check
4040
RUN locale-gen en_US.UTF-8 && update-locale en_US.UTF-8
4141

42-
# For R
42+
# For R. The Ubuntu image installs a few extras for coverage + documentation
4343
RUN mkdir ~/.R && echo "MAKEFLAGS = -j$(nproc)" > ~/.R/Makevars
44-
RUN R -e 'install.packages("desc", repos = "https://cloud.r-project.org")' && mkdir /tmp/rdeps
44+
RUN R -e 'install.packages(c("desc", "covr", "pkgdown"), repos = "https://cloud.r-project.org")' && mkdir /tmp/rdeps
4545
COPY r/DESCRIPTION /tmp/rdeps
4646
RUN R -e 'install.packages(setdiff(desc::desc("/tmp/rdeps")$get_deps()$package, "arrow"), repos = "https://cloud.r-project.org")'
4747

0 commit comments

Comments
 (0)