This repository is an example Buildkite pipeline for building & running a golang program.
The pipeline demonstrates the usage of the docker plugin to build the golang binary, a block step to collect information from the user, and prints the binary output to the console which is visible in the build logs.
See the full Getting Started Guide for step-by-step instructions on how to signup for buildkite and setup your first agent.
$ go build -o dist/hello ./hello
A simple application that takes a command line argument, and then returns it to you in a string:
$ chmod +x dist/hello
$ ./dist/hello John Doe
The above will return 'Hello, John Doe!'
See LICENSE (Apache License)