Skip to content

Commit db8c168

Browse files
committed
Add R 4.5 to CI matrix
1 parent 2c1da8f commit db8c168

4 files changed

Lines changed: 28 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
- name: release
2626
cntr: rcpp/ci
2727
r: R
28+
- name: r-4.5
29+
cntr: rcpp/ci-4.5
30+
r: R
2831
- name: r-4.4
2932
cntr: rcpp/ci-4.4
3033
r: R

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2026-05-05 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* docker/ci-4.5/Dockerfile: Added based on r-base:4.5.3
4+
* .github/workflows/ci.yaml (jobs): Add rcpp/ci-4.5 to matrix
5+
16
2026-05-01 Dirk Eddelbuettel <edd@debian.org>
27

38
* DESCRIPTION (Version, Date): Roll micro version and date

docker/ci-4.5/Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Emacs, make this -*- mode: sh; -*-
2+
3+
FROM r-base:4.5.3
4+
5+
LABEL org.label-schema.license="GPL-2.0" \
6+
org.label-schema.vcs-url="https://github.com/RcppCore/Rcpp" \
7+
maintainer="Dirk Eddelbuettel <edd@debian.org>"
8+
9+
RUN apt-get update \
10+
&& apt-get install -y --no-install-recommends git \
11+
&& install.r inline pkgKitten rbenchmark tinytest
12+
13+
ENV _R_CHECK_FORCE_SUGGESTS_=FALSE
14+
ENV _R_CHECK_TESTS_NLINES_=0
15+
ENV RunAllRcppTests=yes
16+
17+
CMD ["bash"]

docker/ci/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ RUN apt-get update \
1818
git \
1919
&& install.r rbenchmark
2020

21-
ENV _R_CHECK_FORCE_SUGGESTS_ FALSE
22-
ENV _R_CHECK_TESTS_NLINES_ 0
23-
ENV RunAllRcppTests yes
21+
ENV _R_CHECK_FORCE_SUGGESTS_=FALSE
22+
ENV _R_CHECK_TESTS_NLINES_=0
23+
ENV RunAllRcppTests=yes
2424

2525
CMD ["bash"]

0 commit comments

Comments
 (0)