Skip to content

Commit

Permalink
Update the Ubuntu VM images for Circle CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuya6502 committed Apr 2, 2022
1 parent d199cc2 commit 8678c89
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .circleci/config.yml
@@ -1,19 +1,21 @@
version: 2
jobs:
rust/coverage:
machine: true
machine:
image: ubuntu-2004:current
steps:
- checkout
- run:
name: Run cargo tarpaulin (Allowing a failure)
command: |
docker run --security-opt seccomp=unconfined -v "${PWD}:/volume" xd009642/tarpaulin \
RUSTFLAGS='--cfg circleci' \
cargo tarpaulin -v \
--features 'future, dash' \
--ciserver circle-ci \
--coveralls ${COVERALLS_TOKEN} \
--timeout 600 \
docker run --security-opt seccomp=unconfined -v "${PWD}:/volume" \
--env RUSTFLAGS='--cfg circleci' \
xd009642/tarpaulin \
cargo tarpaulin -v \
--features 'future, dash' \
--ciserver circle-ci \
--coveralls ${COVERALLS_TOKEN} \
--timeout 600 \
|| true
workflows:
Expand Down

0 comments on commit 8678c89

Please sign in to comment.