generated from pharmaverse/admiraltemplate
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* delete old templates code, try deploy docker im devel * update r-im creator branch * get DESCRIPTION from admiral * comment other deploys * change credentials with pharmaverse-bot * update push devel * add artifact * fix description URI * fix creds * FIX * fix image name * updates * clean --------- Co-authored-by: pharmaverse-bot <113703390+pharmaverse-bot@users.noreply.github.com>
- Loading branch information
1 parent
1345e31
commit f52550a
Showing
4 changed files
with
36 additions
and
309 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,5 @@ | |
^admiralci.*\.tgz$ | ||
^staged_dependencies.yaml$ | ||
^README.Rmd$ | ||
^.devcontainer | ||
^.devcontainer | ||
^install_devel_deps.R |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Read the dependencies from the CSV file | ||
dependencies <- read.csv("deps.csv", stringsAsFactors = FALSE) | ||
|
||
# Loop through the dependencies and reinstall packages with specific versions | ||
for (i in seq_len(nrow(dependencies))) { | ||
dep_name <- dependencies[i, "Package"] | ||
dep_version <- dependencies[i, "Version"] | ||
install.packages(dep_name, type = "source", repos = NULL, version = dep_version) | ||
} |