You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# "This config is equivalent to the default config that we use if you do not have a buildbuddy.yaml file at the root of your repo."
actions:
- name: "Test all targets"
container_image: "ubuntu-20.04"# <-- we use .deb binaries from 20.04 as our dependencies
triggers:
push:
branches:
- "master"# <-- replace "main" with your main branch name
pull_request:
branches:
- "*"
steps:
- run: "bash ./_checkout_modules.sh"# https://www.buildbuddy.io/docs/workflows-config hopefully this can now be run directly
- run: "bazel test --config=remote //:util_test"# <-- main modification here: --config=remote as a default for buildbuddy.yaml; also currently testing even //:all is broken (because it tries to compile macclipboard.m), much less //...
- name: "Build main binary"
container_image: "ubuntu-20.04"# <-- we use .deb binaries from 20.04 as our dependencies
triggers:
push:
branches:
- "master"# <-- replace "main" with your main branch name