#!/usr/bin/env
args <- commandArgs(trailingOnly = TRUE)
if (length(args) == 0) {
stop("Please provide the Samples directory path", call.=FALSE)
}
library(azuremlsdk)
subscription_id <- Sys.getenv("TEST_SUBSCRIPTION_ID", unset = NA)
resource_group <- Sys.getenv("TEST_RESOURCE_GROUP")
workspace_name <- Sys.getenv("TEST_WORKSPACE_NAME")
cluster_name <- Sys.getenv("TEST_CLUSTER_NAME")
root_dir <- getwd()
getPathLeaves <- function(path){
children <- list.dirs(path, recursive = FALSE)
if(length(children) == 0)
return(path)
ret <- list()
for(child in children){
ret[[length(ret)+1]] <- getPathLeaves(child)
}
return(unlist(ret))
}
validate_samples <- function(args) {
directory = args[1]
sample_dirs = getPathLeaves(directory)
skip_tests = c()
if (length(args) > 1) {
skip_tests = unlist(strsplit(args[2], ";"))
}
for (sub_dir in sample_dirs) {
if (basename(sub_dir) %in% skip_tests) {
next
}
entry_script <- paste0(basename(sub_dir), ".R")
setwd(sub_dir)
tryCatch({
source(entry_script)
setwd(root_dir)
},
error = function(e) {
stop(entry_script, "\n", message(e))
})
}
}
if(!is.na(subscription_id)) {
ws <- get_workspace(name = workspace_name,
subscription_id = subscription_id,
resource_group = resource_group)
write_workspace_config(ws, path = root_dir)
validate_samples(args)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.