diff options
Diffstat (limited to '.buildkite/pipeline.yaml')
-rw-r--r-- | .buildkite/pipeline.yaml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index cddf5504b..cb272aef6 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -45,6 +45,14 @@ steps: - make BAZEL_OPTIONS=--config=cross-aarch64 artifacts/aarch64 - make release + # Images tests. + - <<: *common + label: ":docker: Images (x86_64)" + command: make ARCH=x86_64 load-all-images + - <<: *common + label: ":docker: Images (aarch64)" + command: make ARCH=aarch64 load-all-images + # Basic unit tests. - <<: *common label: ":test_tube: Unit tests" @@ -192,7 +200,7 @@ steps: command: make benchmark-platforms BENCHMARKS_SUITE=node BENCHMARKS_TARGETS=test/benchmarks/network:node_test - <<: *benchmarks label: ":redis: Redis benchmarks" - command: make benchmark-platforms BENCHMARKS_SUITE=redis BENCHMARKS_TARGETS=test/benchmarks/database:redis_test + command: make benchmark-platforms BENCHMARKS_SUITE=redis BENCHMARKS_TARGETS=test/benchmarks/database:redis_test BENCHMARKS_OPTIONS=-test.benchtime=15s - <<: *benchmarks label: ":ruby: Ruby benchmarks" command: make benchmark-platforms BENCHMARKS_SUITE=ruby BENCHMARKS_TARGETS=test/benchmarks/network:ruby_test |