OBJECT

BuildRunStep

A build run log represents a single step in the build process

link GraphQL Schema definition

  • type BuildRunStep implements Node {
  • # The build run this build run step pertains to
  • buildRunId: ID!
  • # Finish time of the build step
  • finishedAt: DateTime
  • # build run step unique id
  • id: ID!
  • # hyperlink to download the logs associated to this step
  • logs: HyperLink
  • # Name of the build step
  • name: String!
  • # Sequence of the steps
  • sequence: Int!
  • # Start time of the build step
  • startedAt: DateTime
  • # Current known state of the build step
  • state: BuildStepState!
  • }