Skip to content

Commit

Permalink
feat(ci): Add test results
Browse files Browse the repository at this point in the history
  • Loading branch information
gfanton committed Nov 7, 2019
1 parent ff43d63 commit 850efe2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .circleci/config.yml
Expand Up @@ -129,7 +129,13 @@ jobs:
- image: bertytech/bazel:0.29.1-buster-r0
steps:
- checkout
- run: cd go && BAZEL_CMD_ARGS="--sandbox_debug --jobs=2 --local_ram_resources=HOST_RAM*.5" make bazel.unittest
- run: cd go && BAZEL_CMD_ARGS="--sandbox_debug --test_output=errors --jobs=2 --local_ram_resources=HOST_RAM*.5" make bazel.unittest
- run:
name: extract test results
command: find -L ./go/bazel-testlogs -name '*.xml' -exec mkdir -p /tmp/test-results/{} \; -exec cp {} /tmp/test-results/{} \;
when: always
- store_test_results:
path: /tmp/test-results/go/bazel-testlogs

bazel-banner:
working_directory: /go/src/berty.tech
Expand Down

0 comments on commit 850efe2

Please sign in to comment.