Skip to content

Latest commit

 

History

History
61 lines (44 loc) · 1.82 KB

File metadata and controls

61 lines (44 loc) · 1.82 KB

bitrise-cli build log

Print the build log

Synopsis

Print the log output for a single build.

Required flags: --app ID (or BITRISE_APP_ID env var)

Argument: BUILD_ID the unique ID of the build

Flags: --wait wait for the build to finish before printing the log; useful when the build is still in-progress. Ctrl-C detaches without affecting the running build. Exit status reflects log retrieval, not the build outcome — use 'build watch' to gate on build success/failure. --interval DURATION polling interval when --wait is active (default 3s)

Note: --output is ignored — logs are streamed as raw text. Pipe to other tools or redirect to a file as needed.

bitrise-cli build log BUILD_ID [flags]

Examples

  bitrise-cli build log --app my-app-id <build-id>
  bitrise-cli build log --app my-app-id <build-id> --wait
  bitrise-cli build log --app my-app-id <build-id> --wait --interval 10s
  bitrise-cli build log --app my-app-id <build-id> > build.log

Options

  -h, --help                help for log
      --interval duration   polling interval when --wait is active (default 3s)
      --wait                wait for the build to finish before printing the log

Options inherited from parent commands

      --app string      app ID (or set BITRISE_APP_ID)
      --no-color        disable ANSI colors (NO_COLOR env is also honored)
  -o, --output string   output format: human|json (default "human")
  -q, --quiet           suppress non-error diagnostic messages
      --theme string    color theme: auto|dark|light|none (default "auto"; overrides terminal background detection)

SEE ALSO