Change target

This commit is contained in:
Arturo Marquez 2022-01-06 19:57:34 -06:00
parent 3c853126de
commit 34e3438d3b
No known key found for this signature in database
GPG Key ID: 4770F4929D4B560A
1 changed files with 3 additions and 3 deletions

View File

@ -58,13 +58,13 @@ coverage:
LLVM_PROFILE_FILE: "coverage-%p-%m.profraw"
script:
- rustup component add llvm-tools-preview
- cargo test
- cargo test --verbose --target x86_64-unknown-linux-gnu --all-features
# generate html report
- cargo install grcov
- grcov . --binary-path ./target/debug/ -s . -t html --branch --ignore-not-existing --ignore "*cargo*" -o ./coverage/
- grcov . --binary-path ./target/x86_64-unknown-linux-gnu/ -s . -t html --branch --ignore-not-existing --ignore "*cargo*" -o ./coverage/
# generate cobertura report for gitlab integration
- pip3 install lcov_cobertura
- grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "*cargo*" -o coverage.lcov
- grcov . --binary-path ./target/x86_64-unknown-linux-gnu/ -s . -t lcov --branch --ignore-not-existing --ignore "*cargo*" -o coverage.lcov
- python3 /usr/local/lib/python3.5/dist-packages/lcov_cobertura.py coverage.lcov
# output coverage summary for gitlab parsing
- apt-get update && apt-get install -y lcov