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

Description Usage Arguments Value See Also Examples

Description

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

Usage

1

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

1
2
3
4
5
6
# 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)
}

RSuite documentation built on June 10, 2019, 5:03 p.m.