diff options
author | Adin Scannell <ascannell@google.com> | 2021-01-08 18:01:05 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-08 18:03:17 -0800 |
commit | 0c99ab70905fa4eaf8bc7b0ca846e12d7bbc6e39 (patch) | |
tree | 426d2500979192e3d32778bdb492f54119303856 /.buildkite/pipeline.yaml | |
parent | 70de1db82e9d3b2c4491031f1f8a9c5a5830c7c0 (diff) |
Support releasing aarch64 builds.
This change works around an issue in rules_pkg, described here:
https://github.com/bazelbuild/rules_pkg/pull/263
PiperOrigin-RevId: 350869030
Diffstat (limited to '.buildkite/pipeline.yaml')
-rw-r--r-- | .buildkite/pipeline.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index 34670f58d..b9c392ee9 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -40,7 +40,10 @@ steps: # Release workflow. - <<: *common label: ":ship: Release tests" - commands: make release + commands: + - make artifacts/x86_64 + - make BAZEL_OPTIONS=--config=cross-aarch64 artifacts/aarch64 + - make release # Basic unit tests. - <<: *common |