Skip to content

Commit

Permalink
chore: 1.0.0-pre (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanouil authored Jan 27, 2024
1 parent 60586de commit a85ac3c
Show file tree
Hide file tree
Showing 12 changed files with 3,502 additions and 4,013 deletions.
2 changes: 1 addition & 1 deletion .github/.devcontainer/bcftools/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

BCFTOOLS_VERSION=${VERSION:-"1.16"}
BCFTOOLS_VERSION=${VERSION:-"1.19"}

set -e

Expand Down
13 changes: 7 additions & 6 deletions .github/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "true",
"username": "vscode",
"userUid": "1001",
"userGid": "1001",
"userUid": "1000",
"userGid": "1000",
"upgradePackages": "true"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "latest",
"ppa": "false"
},
"ghcr.io/rocker-org/devcontainer-features/r-rig:1": {
"version": "4.2.0",
"vscodeRSupport": "full",
"version": "4.3.2",
"vscodeRSupport": "none",
"installDevTools": "false",
"installREnv": "true",
"installRMarkdown": "false"
},
"./bcftools": {
"version": "1.16"
"version": "1.19"
},
"./eggla": {
"version": "main"
Expand All @@ -41,7 +41,8 @@
"--no-save",
"--no-restore-data",
"--quiet"
]
],
"r.useRenvLibPath": true
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion .github/.devcontainer/eggla/R/lock.R
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
pak::pkg_install("devtools")
pkgs <- setdiff(rownames(old.packages(repos = "https://cloud.r-project.org/")), "pak")
if (length(pkgs) > 0) pak::pkg_install(pkgs)

lock_file <- ".github/.devcontainer/eggla/R/pkg.lock"
pak::lockfile_create(
pkg = c(".", "data.table", "devtools", "languageserver", "httpgd", "svglite", "ragg"),
pkg = c(".", "data.table", "svglite", "ragg"),
lockfile = lock_file,
lib = NULL,
upgrade = TRUE,
Expand Down
Loading

0 comments on commit a85ac3c

Please sign in to comment.