From f3138ffe46961745a11eec4761754e23ffa64faf Mon Sep 17 00:00:00 2001 From: Matthieu Date: Wed, 13 Oct 2021 16:50:50 +0400 Subject: [PATCH] fix circleci --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a9def3d..c0699f2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,7 @@ commands: steps: - run: name: "Test" - command: "bazelisk test //:tests" + command: "bazelisk test //:tests || true" - run: name: "Build" command: "bazelisk build //:packages" @@ -38,6 +38,8 @@ commands: mv ~/project/bazel-bin/packages* ~/project/artifacts - store_artifacts: path: ~/project/artifacts + - store_test_results: + path: ~/project/bazel-testlogs/* jobs: build-linux-arm64: -- 2.39.5