Skip to content
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
- name: release
cntr: rcpp/ci
r: R
- name: r-4.4
cntr: rcpp/ci-4.4
r: R
- name: r-4.3
cntr: rcpp/ci-4.3
r: R
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2025-04-15 Dirk Eddelbuettel <[email protected]>

* docker/ci-4.4/Dockerfile: Added based on r-base:4.4.3
* .github/workflows/ci.yaml (jobs): Add rcpp/ci-4.4 to matrix

2025-03-31 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Version, Date): Roll micro version and date
Expand Down
17 changes: 17 additions & 0 deletions docker/ci-4.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## Emacs, make this -*- mode: sh; -*-

FROM r-base:4.4.3

LABEL org.label-schema.license="GPL-2.0" \
org.label-schema.vcs-url="https://github.com/RcppCore/Rcpp" \
maintainer="Dirk Eddelbuettel <[email protected]>"

RUN apt-get update \
&& apt-get install -y --no-install-recommends git \
&& install.r inline pkgKitten rbenchmark tinytest

ENV _R_CHECK_FORCE_SUGGESTS_=FALSE
ENV _R_CHECK_TESTS_NLINES_=0
ENV RunAllRcppTests=yes

CMD ["bash"]