-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create a second r-devel devcontainer, set it as default * Need repos set on this image * DESCRIPTION version * Copy-edit to NEWS * empty entry for backports:4.4.0 * Fix up backport_linter for oldrel stuff * ignore references to removed linter * to-be-deleted: massive GHA for all versions * Revert "to-be-deleted: massive GHA for all versions" This reverts commit b7a34d1. * Fix up exclusions of large files
- Loading branch information
1 parent
39f7a59
commit b96e5e5
Showing
10 changed files
with
70 additions
and
46 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
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,3 @@ | ||
{ | ||
"build": { "dockerfile": "Dockerfile", "context": ".."} | ||
"build": { "dockerfile": "r-devel/Dockerfile", "context": ".."} | ||
} |
File renamed without changes.
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,3 @@ | ||
{ | ||
"build": { "dockerfile": "Dockerfile", "context": "../.." } | ||
} |
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,15 @@ | ||
FROM docker.io/rhub/r-minimal:devel | ||
|
||
RUN apk update && \ | ||
apk add --no-cache git gcc g++ libxml2 linux-headers musl-dev | ||
|
||
COPY DESCRIPTION . | ||
|
||
RUN Rscript -e ' \ | ||
options(repos="https://cloud.r-project.org"); \ | ||
install.packages("remotes"); \ | ||
remotes::install_deps(dependencies = c( \ | ||
"Imports", \ | ||
"Config/needs/development" \ | ||
)) \ | ||
' |
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
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