Skip to content

Commit 3542183

Browse files
authored
Merge pull request #1174 from RcppCore/feature/updated_ci
Add R 4.0.* to CI
2 parents a50c8d8 + 84f8c45 commit 3542183

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- name: release
2020
cntr: rcpp/ci
2121
r: R
22+
- name: r-4.0
23+
cntr: rcpp/ci-4.0
24+
r: R
2225
- name: r-3.6
2326
cntr: rcpp/ci-3.6
2427
r: R

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@ local/
2929
## docker helpers
3030
docker/*sh
3131
docker/*/*.sh
32+
33+
## Emacs
34+
*~

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2021-09-06 Dirk Eddelbuettel <[email protected]>
2+
3+
* docker/ci-4.0/Dockerfile: Using R 4.0.5 to build ci-4.0
4+
* .github/workflows/ci.yaml (jobs): Also run against R 4.0.*
5+
16
2021-09-05 Dirk Eddelbuettel <[email protected]>
27

38
* inst/examples/Misc/piSugar.cpp (piSugar): Remove spurious call to

docker/ci-4.0/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.0.5
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 <[email protected]>"
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"]

0 commit comments

Comments
 (0)