Skip to content

Add Dockerfile for rcpp/ci-4.4, add it to CI matrix #1376

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 16, 2025
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 <edd@debian.org>

* 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 <edd@debian.org>

* 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 <edd@debian.org>"

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"]