Workflows configuration
Once you've linked your repo to BuildBuddy via
BuildBuddy workflows, BuildBuddy will automatically
run bazel test //...
on each push to your repo, reporting results to the
BuildBuddy UI.
But you may wish to configure multiple test commands with different test tag filters, or run the same tests on multiple different platform configurations (running some tests on Linux, and some on macOS, for example).
This page describes how to configure your workflows beyond the default configuration.
Configuring workflow actions and triggers
BuildBuddy workflows can be configured using a file called
buildbuddy.yaml
, which can be placed at the root of your git repo.
buildbuddy.yaml
consists of multiple actions. Each action describes
a list of bazel commands to be run in order, as well as the set of git
events that should trigger these commands.
note
The configuration in buildbuddy.yaml
only takes effect after you
enable workflows for the repo.
Example config
You can copy this example config as a starting point for your own buildbuddy.yaml
:
actions:
- name: "Test all targets"
triggers:
push:
branches:
- "main" # <-- replace "main" with your main branch name
pull_request:
branches:
- "*"
bazel_commands:
- "test //..."
This config is roughly equivalent to the default config that we use if you
do not have a buildbuddy.yaml
.
Bazel configuration
Bazel version
BuildBuddy runs each bazel command in your workflow with a
bazelisk-compatible wrapper so
that your .bazelversion
file is respected.
If .bazelversion
is missing, the latest version of Bazel is used. We
always recommend including a .bazelversion
in your repo to prevent
problems caused by using conflicting versions of Bazel in different build
environments.
bazelrc
BuildBuddy runs each bazel command directly in your workspace, which means
that your .bazelrc
is respected. If you have lots of flags, we recommend
adding them to your .bazelrc
instead of adding them to your buildbuddy.yaml
.
BuildBuddy also provides a bazelrc
file which passes these default options to each bazel invocation listed in
bazel_commands
:
--bes_backend
and--bes_results_url
, so that the results from each Bazel command are viewable with BuildBuddy--remote_header=x-buildbuddy-api-key=YOUR_API_KEY
, so that invocations are authenticated by default--build_metadata=ROLE=CI
, so that workflow invocations are tagged as CI invocations, and so that workflow tests are viewable in the test grid
BuildBuddy's bazelrc
takes lower precedence than your workspace
.bazelrc
. You can view the exact flags provided by this bazelrc by
inspecting the command line details in the invocation page (look for
buildbuddy.bazelrc
).
note
BuildBuddy remote cache and remote execution (RBE) are not enabled by default for workflows, and require additional configuration. The configuration steps are the same as when running Bazel locally. See the Setup page in the BuildBuddy UI.
Mac configuration
By default, workflows will execute on BuildBuddy's Linux executors, but it is also possible to run workflows on macOS by using self-hosted executors.
Set up one or more Mac executors that will be dedicated to running workflows, following the steps in the Enterprise Mac RBE Setup guide.
Then, in your
buildbuddy-executor.plist
file, find theEnvironmentVariables
section and setMY_POOL
toworkflows
. You'll also need to setSYS_MEMORY_BYTES
to allow enough memory to be used for workflows (a minimum of 8GB is required).
...
<key>EnvironmentVariables</key>
<dict>
...
<!-- Set the required executor pool name for workflows -->
<key>MY_POOL</key>
<string>workflows</string>
<!-- Allocate 16GB of memory to workflows (8GB minimum) -->
<key>SYS_MEMORY_BYTES</key>
<string>16000000000</string>
</dict>
...
If you haven't already, enable workflows for your repo, then create a file called
buildbuddy.yaml
at the root of your repo. See the Example config for a starting point.Set
os: "darwin"
on the workflow action that you would like to build on macOS. For M1 Macs, addarch: "arm64"
as well. Note: if you copy another action as a starting point, be sure to give the new action a unique name:
actions:
- name: "Test all targets (Mac)"
os: "darwin" # <-- add this line
arch: "arm64" # <-- add this line for M1 Macs only
triggers:
push:
branches:
- "main"
pull_request:
branches:
- "main"
bazel_commands:
- "test //... --build_metadata=ROLE=CI --bes_backend=grpcs://remote.buildbuddy.io --bes_results_url=https://app.buildbuddy.io/invocation/"
That's it! Whenever any of the configured triggers are matched, one of
the Mac executors in the workflows
pool should execute the
workflow, and BuildBuddy will publish the results to your branch.
buildbuddy.yaml schema
BuildBuddyConfig
The top-level BuildBuddy workflow config, which specifies bazel commands that can be run on a repo, as well as the events that trigger those commands.
Fields:
actions
(Action
list): List of actions that can be triggered by BuildBuddy. Each action corresponds to a separate check on GitHub. If multiple actions are matched for a given event, the actions are run in order. If an action fails, subsequent actions will still be executed.
Action
A named group of Bazel commands that run when triggered.
Fields:
name
(string
): A name unique to this config, which shows up as the name of the check in GitHub.triggers
(Triggers
): The triggers that should cause this action to be run.os
(string
): The operating system on which to run the workflow. Defaults to"linux"
."darwin"
(macOS) is also supported, but requires using self-hosted Mac executors running on a dedicatedworkflows
pool.arch
(string
): The CPU architecture of the workflow runner. Defaults to"amd64"
."arm64"
is also supported when running underos: "darwin"
, but requires using self-hosted M1 Mac executors running on a dedicatedworkflows
pool.bazel_commands
(string
list): Bazel commands to be run in order. If a command fails, subsequent ones are not run, and the action is reported as failed. Otherwise, the action is reported as succeeded.
Triggers
Defines whether an action should run when a branch is pushed to the repo.
Fields:
push
(PushTrigger
): Configuration for push events associated with the repo. This is mostly useful for reporting commit statuses that show up on the home page of the repo.pull_request
(PullRequestTrigger
): Configuration for pull request events associated with the repo. This is required if you want to use BuildBuddy to report the status of this action on pull requests, and optionally prevent pull requests from being merged if the action fails.
PushTrigger
Defines whether an action should execute when a branch is pushed.
Fields:
branches
(string
list): The branches that, when pushed to, will trigger the action. This field accepts a simple wildcard character ("*"
) as a possible value, which will match any branch.
PullRequestTrigger
Defines whether an action should execute when a pull request (PR) branch is pushed.
Fields:
branches
(string
list): The target branches of a pull request. For example, if this is set to[ "v1", "v2" ]
, then the associated action is only run when a PR wants to merge a branch into thev1
branch or thev2
branch. This field accepts a simple wildcard character ("*"
) as a possible value, which will match any branch.