Added github authentication package in pool installation (#365)

This commit is contained in:
Brian Hoang 2019-08-13 09:55:24 -07:00 коммит произвёл GitHub
Родитель 9e9b4942f4
Коммит d206fd68c2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 29 добавлений и 3 удалений

Просмотреть файл

@ -104,8 +104,17 @@ makeCluster <-
if (!is.null(poolConfig$rPackages) &&
!is.null(poolConfig$rPackages$github) &&
length(poolConfig$rPackages$github) > 0) {
installGithubCommand <-
getPoolPackageInstallationCommand("github", poolConfig$rPackages$github)
if (!is.null(config$githubAuthenticationToken) &&
config$githubAuthenticationToken != "") {
installGithubCommand <-
getPoolPackageInstallationCommand("github", poolConfig$rPackages$github, config$githubAuthenticationToken)
}
else {
installGithubCommand <-
getPoolPackageInstallationCommand("github", poolConfig$rPackages$github)
}
packages <- c(packages, installGithubCommand)
}

Просмотреть файл

@ -20,7 +20,7 @@ getJobPackageInstallationCommand <- function(type, packages) {
}
}
getPoolPackageInstallationCommand <- function(type, packages) {
getPoolPackageInstallationCommand <- function(type, packages, githubAuthenticationToken = "") {
sharedPackagesDirectory <- "/mnt/batch/tasks/shared/R/packages"
libPathsCommand <- paste0('\'.libPaths( c( \\\"',
@ -41,6 +41,13 @@ getPoolPackageInstallationCommand <- function(type, packages) {
)
}
else if (type == "github") {
if (githubAuthenticationToken != "") {
installCommand <-
paste(installCommand,
sprintf("-e \'githubAuthToken <- \\\"%s\\\"\'", githubAuthenticationToken),
"-e \'Sys.setenv(GITHUB_PAT = githubAuthToken)\'")
}
poolInstallationCommand <-
paste(
installCommand,
@ -130,6 +137,16 @@ dockerRunCommand <-
"-e AZ_BATCH_JOB_PREP_WORKING_DIR=$AZ_BATCH_JOB_PREP_WORKING_DIR",
"-e BLOBXFER_SASKEY=$BLOBXFER_SASKEY"
)
config <- getConfiguration()
if (!is.null(config$githubAuthenticationToken)
&& config$githubAuthenticationToken != "") {
dockerOptions <-
paste(
dockerOptions,
"-e GITHUB_PAT=$GITHUB_PAT"
)
}
}
dockerRunCommand <-