Everyone's favourite illustration from the Buildkite website has been repackaged and deployed as a set of transparent stickers, ready for you to launch onto any surface you choose ✨
You can order your own set of 🚀 stickers from the Buildkite Shop.
You can now link directly to a job from a build annotation! 🔗
This should make the annotations generated by neat annotation generators like test-summary-buildkite-plugin and rspec-buildkite all the more handy.
You can now upload a user avatar directly on Buildkite. 🤳🏻 You’ll find the option to either drag-and-drop, or browse for an avatar in your Personal Settings!
If you don’t upload an avatar directly, we’ll continue to use your Gravatar, or if you use Buildkite via Single Sign-On, the avatar from your SSO provider.
Finally, organization admins can find a new option to upload an icon under Organization Settings. 🖼 That icon will be used in the organization switcher, as well as shown alongside Single Sign-On prompts.
We've released a new major version of Elastic Stack for AWS.
The Buildkite Elastic CI Stack gives you a private, autoscaling Buildkite Agent cluster. Use it to parallelize legacy tests across hundreds of nodes, run tests and deployments for all your Linux-based services and apps, or run AWS ops tasks.
The new version is focused on moving the underlying instances to Amazon Linux 2, which brings with it modern versions of systemd
amongst others.
Check out the full release notes at https://github.com/buildkite/elastic-ci-stack-for-aws/releases/tag/v4.0.0 and let us know what you think at https://forum.buildkite.community/t/upcoming-elastic-stack-v4/78.
The Buildkite pipeline schema is now available in the JSON Schema Store and on GitHub, allowing you to autocomplete and validate your pipeline YAML files as you write them 📝✨
Any editor extension that supports RedHat YAML Language Server will automatically pick up support, including:
If you’ve built your own dynamic pipeline tools or plugins you can use the full JSON schema in your tests, or to validate your pipelines before uploading them to Buildkite.
There's a new screencast available at buildkite.com/screencasts/docker 🎉
The Docker screencast walks through a Docker workflow in Buildkite: building, testing, and deploying an image to production. The pipeline and code you'll see in the screencast are also available on GitHub: https://github.com/buildkite/screencast-examples/
You can check out the Docker screencast, and all the others, at buildkite.com/screencasts
Some of you may not know this, but Buildkite actually used to be called Buildbox! We changed our name back in December 2014.
From today, BUILDBOX_*
environment variables won't be generated for new jobs.
We've confirmed there are no agents running this version connected to Buildkite, however we can't tell if you're referencing any BUILDBOX_*
environment variables in your build scripts. If you are, please update them to use their BUILDKITE_*
equivalent.
You can see our environment variable documentation for a full list of current job environment variables.
We've just shipped a small update to the build page to include the user who canceled the build 🙅♀️🙅♂️
And if your build was canceled due to Build Skipping (e.g. if you’ve enabled "Cancel Intermediate Builds") we'll show that too:
We've just shipped a new beta feature giving you the ability to define your initial build steps using the same pipeline YAML format that you use in source code.
This means that you can now configure trigger steps, block steps with input fields, and plugins independently of your pipeline’s source repository. YAML steps will become the default for all new pipelines once the beta is complete.
Head on over to your "Pipeline Settings" page to convert your pipeline to YAML Steps.
You can read more about the feature and give us feedback in the Buildkite Community Forum
Two-factor authentication for user accounts has just been released 🚀📟✨
You can find two-factor authentication in the sidebar of your Personal Settings. Set up your One Time Password with your favorite authenticator application, and don't forget to save your recovery codes somewhere secure 🗃💾💿
Buildkite Docker Plugin v2.0.0 has been released, and includes:
command
option for using single-binary/command line Docker images1 2 3 4 5 6
steps: - command: 'dotnet publish -c Release -o published' plugins: - docker#v2.0.0: image: 'microsoft/dotnet:latest' always-pull: true
See all the details, and upgrade instructions, on the release notes: https://github.com/buildkite-plugins/docker-buildkite-plugin/releases/tag/v2.0.0
Build pipelines that finish with a click to unblock step now have a new state: Blocked! 🚧
You'll see some nice new icons across the Buildkite website and the build will now show as "Blocked" in notification services.
For now, webhooks and the API are unchanged so we don't affect your existing integrations. Keep an eye out for these changes in a future update to the API!
We’ve just released Buildkite Agent v2.2 (Brangelina) 💑💔
So what's changed since Buildkite Agent 2.1.14?
buildkite-agent
binary is now built with Golang 1.7 giving us support for macOS Sierralibc
)meta-data-ec2
and meta-data-ec2-tags
can now be configured using BUILDKITE_AGENT_META_DATA_EC2
and BUILDKITE_AGENT_META_DATA_EC2_TAGS
environment variablesWe've removed our dependency of libc
for greater compatibly across *nix systems which has had a few side effects:
libc
to work. This feature has only ever been available to users running 64-bit Ubuntu. We'd like to bring this feature back in the future in a way that doesn't have us relying on libc
agent.buildkite.com
The release has been published to the Buildkite package repositories. For instructions on upgrading your agent please see the Upgrading section in the corresponding section of our installation documentation.
Today we’ve shipped some changes to simplify the Buildkite invitation system, including revamped invitation emails, automatic email address verification and a new screen for you to double check invitations before accepting them.
You can get the lowdown on our Building Buildkite blog post 🌟
Update: We accidentally introduced a bug in this release. Please upgrade to the latest agent instead.
It's a cold winter's day here in Melbourne, but never too cold for new Buildkite Agent release: v2.1.14 (Frosty) ⛄️
What’s new since v2.1.13?
$BUILDKITE_DOCKER_COMPOSE_FILE
now accepts multiple files separated by a colon (:
), like $PATH
The release has been published to the Buildkite package repositories. For instructions on upgrading your agent please see the Upgrading section in the corresponding section of our installation documentation.
For a full list of what's changed see the GitHub release page
To make it easier for you to setup a build stack on AWS we've released the Elastic CI Stack for AWS ⚡ a pre-built CloudFormation stack that gives you autoscaling based on build metrics, centralized CloudWatch agent logging, and S3 bucket support for configuring pipeline secrets.
You can read all about it on our new blog Building Buildkite, the GitHub Readme or our step-by-step guide.
Transitioning your build pipeline definitions from the web into your source control used to mean rewriting them by hand, which in same cases could have taken a while and made you a sad panda...
We wanted to make this transition easier, so we've given you the ability to export your pipelines as pre-formatted - ready to rock and roll - pipeline.yml
files 🌟
So now you can turn this...
...into this...
1 2 3 4 5 6 7 8
steps: - command: ".buildkite/eslint.sh" - command: ".buildkite/webpack.sh" - wait - command: ".buildkite/deploy.sh" branches: "master"
You can find the new export feature over on the Pipeline Settings page...
Check out our Uploading Build Pipelines guide and pipeline.yml documentation if you'd like to learn more about you can do with pipeline definition files 📖
If you use StatusPage.io you'll be pleased to know you can now find Buildkite in the Third-Party Component list, so when Buildkite experiences an outage (which is hopefully never) then your StatusPage will automatically update. Such automation! ✨
If you’ve installed the Buildkite Agent using Homebrew recently you might have noticed warnings about the use of SHA1:
1 2 3 4 5
$ brew install buildkite-agent ==> Installing buildkite-agent from buildkite/buildkite ==> Downloading .../buildkite-agent-darwin-386-2.1.13.tar.gz Warning: SHA1 support is deprecated and will be removed in a future version. Please switch this formula to SHA256.
Well, we’ve updated everything to use SHA256. Installing using Homebrew should now be slightly less eventful 🎉
We also noticed that installing the new Buildkite Agent 3.0 beta using homebrew’s --devel
flag wasn't quite working, so we’ve fixed that too! 🍻
To make it easier to see which jobs were run in a build and which ones were skipped, we’ve updated build pipelines to hide skipped jobs by default ✨
No more seeing a disabled 🚀 step in a pull requests’s build pipeline 👏
If you want to see what jobs were skipped you can use the “Show skipped jobs” button on the right hand side of the pipeline 👀
Once you’ve shown the skipped jobs you can hover over them to see why they were skipped:
We’ve also added the ability to add branch filter patterns to block
steps so you can hide these too (and a new skip
property to manually skip a step):
1 2 3 4 5 6 7 8 9 10 11
steps: - command: ".buildkite/tests.sh" - command: ".buildkite/lint.sh" skip: "Linting is currently broken, skipping for now" - block: "Deploy to production" branches: "master" - command: ".buildkite/deploy.sh" branches: "master"
For more examples check out the updated Build Pipelines agent documentation and the Uploading Build Pipelines guide.
Create an account to get started with a 30-day free trial. No credit card required.