GithubHelp home page GithubHelp logo

classicvalues / buildkite-agent Goto Github PK

View Code? Open in Web Editor NEW

This project forked from discord/buildkite-agent

1.0 1.0 0.0 26.19 MB

The Buildkite Agent is an open-source toolkit written in Golang for securely running build jobs on any device or network

Home Page: https://buildkite.com/

License: MIT License

Ruby 0.49% Go 88.74% Shell 8.12% Batchfile 0.01% PowerShell 1.86% Dockerfile 0.78%

buildkite-agent's Introduction

Buildkite Agent Build status

Note: This is the development branch of the buildkite-agent, and may not contain files or code in the current stable release.

The buildkite-agent is a small, reliable, and cross-platform build runner that makes it easy to run automated builds on your own infrastructure. It’s main responsibilities are polling buildkite.com for work, running build jobs, reporting back the status code and output log of the job, and uploading the job's artifacts.

Full documentation is available at buildkite.com/docs/agent

$ buildkite-agent --help
Usage:

  buildkite-agent <command> [options...]

Available commands are:

  start      Starts a Buildkite agent
  annotate   Annotate the build page within the Buildkite UI with text from within a Buildkite job
  artifact   Upload/download artifacts from Buildkite jobs
  meta-data  Get/set data from Buildkite jobs
  pipeline   Make changes to the pipeline of the currently running build
  step       Make changes to a step (this includes any jobs that were created from the step)
  bootstrap  Run a Buildkite job locally
  help       Shows a list of commands or help for one command

Use "buildkite-agent <command> --help" for more information about a command.

Dependencies

The agent is fairly portable and should run out of the box on most supported platforms without extras. On Linux hosts it requires dbus.

Installing

The agents page on Buildkite has personalised instructions, or you can refer to the Buildkite docs. Both cover installing the agent with Ubuntu (via apt), Debian (via apt), macOS (via homebrew), Windows and Linux.

Docker

We also support and publish Docker Images for the following operating systems. Docker images are tagged using the agent SemVer components followed by the operating system.

For example, agent version 3.30.0 is published as:

  • 3-ubuntu-20.04, tracks minor and bugfix updates in version 3 installed in Ubuntu 20.04
  • 3.30-ubuntu-20.04, tracks bugfix updates in version 3.30 installed in Ubuntu 20.04
  • 3.30.0-ubuntu-20.04, tracks the exact version installed in Ubuntu 20.04

Tier 1, guaranteed to work

  • Alpine 3.12
  • Ubuntu 18.04 LTS (x86_64), supported to end of life for 18.04
  • Ubuntu 20.04 LTS (x86_64), supported to end of life for 20.04

Tier 2, guaranteed to build

  • CentOS 8

Starting

To start an agent all you need is your agent token, which you can find on your Agents page within Buildkite.

buildkite-agent start --token

Development

These instructions assume you are running a recent macOS, but could easily be adapted to Linux and Windows.

# Make sure you have go 1.11+ installed.
brew install go

# Download the code somewhere, no GOPATH required
git clone https://github.com/buildkite/agent.git
cd agent

# Create a temporary builds directory
mkdir /tmp/buildkite-builds

# Build an agent binary and start the agent
go build -i -o /usr/local/bin/buildkite-agent .
buildkite-agent start --debug --build-path=/tmp/buildkite-builds --token "abc"

# Or, run the agent directly and skip the build step
go run *.go start --debug --build-path=/tmp/buildkite-builds --token "abc"

Dependency management

We're using Go 1.14+ and Go Modules to manage our Go dependencies.

If you are using Go 1.11+ and have the agent in your GOPATH, you will need to enable modules via the environment variable:

export GO111MODULE=on

Dependencies are no longer committed to the repository, so compiling on Go <= 1.10 is not supported.

Platform Support

We provide support for security and bug fixes on the current major release only.

Our architecture and operating system support is primarily limited by what golang itself supports.

Architecture Support

We offer support for the following machine architectures (inspired by the Rust language platform support guidance).

Tier 1, guaranteed to work

  • linux x86_64
  • linux arm64
  • windows x86_64

Tier 2, guaranteed to build

  • linux x86
  • windows x86
  • darwin x86_64
  • darwin arm64

Tier 3, community supported

  • linux arm
  • linux armf
  • linux ppc64
  • linux ppc64le
  • linux mips64
  • linux s390x
  • netbsd x86_64
  • freebsd x86
  • freebsd x86_64
  • openbsd x86
  • openbsd x84_64
  • dragonfly x86_64

Operating System Support

We currently provide support for running the Buildkite Agent on the following operating systems. Future major releases may drop support for old operating systems. The agent binary is fairly portable and should run out of the box on most UNIX like systems.

  • Ubuntu 18.04 and newer
  • Debian 8 and newer
  • Red Hat RHEL 7 and newer
  • CentOS
    • CentOS 7
    • CentOS 8
  • Amazon Linux 2
  • macOS [1]
    • 10.12
    • 10.13
    • 10.14
    • 10.15
    • 11
  • Windows Server
    • 2012
    • 2016
    • 2019

[1] See golang/go#23011 for macOS / golang support and Supported macOS Versions for the last supported version of the Buildkite Agent for versions of macOS prior to those listed above.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Contributors

Many thanks to our fine contributors! @adill, @airhorns, @alexjurkiewicz, @bendrucker, @bradfeehan, @byroot, @cab, @caiofbpa, @colinrymer, @cysp, @daveoflynn, @daveoxley, @daveslutzkin, @davidk-zenefits, @DazWorrall, @dch, @deoxxa, @dgoodlad, @donpinkster, @essen, @grosskur, @jgavris, @joelmoss, @jules2689, @julianwa, @kouky, @marius92mc, @mirdhyn, @mousavian, @nikyoudale, @pda, @rprieto, @samritchie, @silarsis, @skevy, @stefanmb, @tekacs, @theojulienne, @tommeier, @underscorediscovery, and @wolfeidau.

Copyright

Copyright (c) 2014-2019 Buildkite Pty Ltd. See LICENSE for details.

buildkite-agent's People

Contributors

keithpitt avatar lox avatar toolmantim avatar yob avatar sj26 avatar pda avatar keithduncan avatar ticky avatar goodspark avatar dependabot[bot] avatar jayco avatar garypwhite avatar dbaggerman avatar chloeruka avatar kouky avatar tommeier avatar grosskur avatar harrietgrace avatar jnewbigin avatar wolfeidau avatar moensch avatar juanitofatas avatar plasticine avatar dazworrall avatar pdemirdjian avatar petercgrant avatar stefanmb avatar davidk-zenefits avatar sayboras avatar airhorns avatar

Stargazers

Classic Values avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.