Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .buildkite/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ FROM rust:latest
RUN rustup component add rustfmt && \
rustup component add clippy

RUN cargo install cargo-tarpaulin

WORKDIR /sdk-core
2 changes: 2 additions & 0 deletions .buildkite/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ services:
build:
context: ../../
dockerfile: .buildkite/docker/Dockerfile
security_opt:
- seccomp:unconfined
command: /bin/sh -c ".buildkite/docker/build.sh"
environment:
- "USER=unittest"
Expand Down
4 changes: 3 additions & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ steps:
agents:
queue: "default"
docker: "*"
command: "cargo test --workspace"
command: "cargo tarpaulin --out Html --workspace"
artifact_paths:
- "tarpaulin-report.html"
timeout_in_minutes: 15
plugins:
- docker-compose#v3.0.0:
Expand Down