Learn R Programming

RSuite (version 0.37-253)

ci_adapter_create_base: Creates the base presentation for the CI adapter to use by concrete implementations.

Description

Creates the base presentation for the CI adapter to use by concrete implementations.

Usage

ci_adapter_create_base(name)

Arguments

name

name under which CI adapter will be registered in RSuite. It cannot contain whitespaces or comma. (type: character)

Value

object of type rsuite_ci_adapter

See Also

Other in extending RSuite with CI adapter: ci_adapter_get_version, ci_adapter_is_building

Examples

Run this code
# NOT RUN {
# create you own CI adapter
ci_adapter_create_own <- function() {
  result <- ci_adapter_create_base("Own")
  class(result) <- c("ci_adapter_own", class(result))
  return(result)
}

# }

Run the code above in your browser using DataLab