bkcli

module
v0.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 2, 2018 License: Apache-2.0

README

bkcli

bkcli is an easy to use buildkite command line tool. Features include:

  • Prints logs in ANSI color
  • tail -f style output for build logs
  • Trigger builds from the command line
  • Check which steps failed for a build
  • Uses config ini (~/.bkcli/config) to manage different tokens and orgs

Installing

  1. Download the latest release binary for your platform
  2. Make sure it's executable
  3. Move the binary to a folder in your $PATH

For example, assuming /usr/local/bin is in your $PATH

Linux
wget https://github.com/stellargraph/bkcli/releases/download/v0.0.2/bkcli-linux
chmod +x bkcli-linux
mv bkcli-linux /usr/local/bin/bkcli
MacOS
wget https://github.com/stellargraph/bkcli/releases/download/v0.0.2/bkcli-macOS
chmod +x bkcli-macOS
mv bkcli-macOS /usr/local/bin/bkcli
Windows

Currently untested

Building

Install govendor

go get -u github.com/kardianos/govendor

Set the project in the $GOPATH/src. In the repo folder, run govendor sync or make sync to pull down the packages in the vendor folder.

To compile run make linux, for linux builds, make darwin for MacOS builds, and make windows for Windows builds (64-bit architecture is assumed in all cases).

Buildkite Tokens

A buildkite token is needed to interact with buildkite's API.

Creating a Token

Visit https://buildkite.com/user/api-access-tokens to create a token

API Token Generate

Scope

The scopes the token needs for bkcli:

  • read_agents
  • read_builds
  • read_build_logs
  • read_pipelines
  • write_builds

GraphQL API Access is not needed

Setup

bkcli can read the token from the environment variavle BUILDKITE_TOKEN or from a config file ~/.bkcli/config. Note that the environment variable for the token takes precedence over the config file.

For the default buildkite organization, the command line argument --organization takes precedence over the environment variable BUILDKITE_ORG, then over the config file.

Use cases:

  • For automated runs of bkcli (or CI runs with the docker container), injecting the token as an environment variable would make sense.

  • For personal tokens on local machines, using a config file is preferred. Inside your $HOME folder, create the ~/.bkcli/config with the content

[default]
token = xxxxxxxxxxxxxxxxxxxxx
organization = stellar

Note that other profiles can be selected with the --profile flag.

Usage

bkcli --help or just bkcli will show the help output.

Getting logs

To get a log for a particular build

bkcli -p <pipeline> -b <build number>

For a particular commit hash

bkcli -p <pipeline> -c <commit hash>

To tail -f a running job, use the -f flag

Triggering builds

To re-trigger the last build in a pipeline

bkcli -p <pipeline> -t

To re-trigger a particular build

bkcli -p <pipeline> -b <build number> -t
Listing Agents
bkcli -a

Will return in JSON format for parsing

Useful aliases

To get a tail of the log of a particular git repo after a commit has been made

alias getlog='bkcli -c $(git rev-parse HEAD) -p $(basename $(git rev-parse --show-toplevel)) -f'

note that it assumes the repo name is the same as the pipeline name

To use the remote origin url

alias getlog='bkcli -c $(git rev-parse HEAD) -p $(basename -s .git $(git config --get remote.origin.url)) -f'

Bash/ZSH Shell Completion

For bash/zsh completions, add the code snippet to your relevant dotfile, e.g., ~/.bash_profile

For bash

eval "$(bkcli --completion-script-bash)"

For zsh

eval "$(bkcli --completion-script-zsh)"

Docker

To build the image stellargraph/bkcli run ./docker/build.sh, or pull the latest image docker pull stellargraph/bkcli

To use a token with the docker image, inject the token as the environment variable BUILDKITE_TOKEN

Contributing

GitHub issue submissions and pull requests and are welcome

Directories

Path Synopsis
cmd

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL