-
-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a80381c
commit 30f1a0a
Showing
4 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2024-05-18 Dirk Eddelbuettel <[email protected]> | ||
|
||
* docker/ci-4.3/Dockerfile: Add rcpp/ci-4.3 container for R 4.3.* | ||
* .github/workflows/ci.yaml (jobs): Add rcpp/ci-4.3 to matrix | ||
|
||
2024-05-16 Dirk Eddelbuettel <[email protected]> | ||
|
||
* README.md: Use tinyverse.netlify.app for dependency badge | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Emacs, make this -*- mode: sh; -*- | ||
|
||
FROM r-base:4.3.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"] |