-
-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use the pre-built binaries with travis? #359
Comments
Could you try with |
So the minimum recommended travis setup has |
Ok, I'll double check with |
trusty: also fails with sudo, but is version: libssl-dev amd64 1.0.1f-1ubuntu2.27, so it's just a not 1.1 as tarpaulin has been compiled against I think. bionic has libssl-dev amd64 1.1.1-1ubuntu2.1~18.04.5. Bionic does not need An added nuissance is that by putting it as an inline script in the travis yaml: after_success: |
bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh)
cargo tarpaulin --features "spawn_handle async_std tokio_tp tokio_ct localpool threadpool" --exclude-files src/bindgen.rs --out Xml
bash <(curl -s https://codecov.io/bash) This will report the built successful even if the codecov script concludes with "no coverage data found". Probably needs some |
Closes xd009642#359 I think it would be great if tarpaulin had CI itself to verify that all recommended installation procedures actually lead to working setups. Unfortunately I don't have the time to set that up for you.
@najamelan does the PR merged solve this issue? Or are there more documentation changes that would help? |
If I were you, I would create CI configurations that actually run on travis, which would prove that they work and then point to them in the readme, but this already is definitely great improvement. Thanks for merging. |
I was hoping to use cargo tarpaulin on travis, in the standard linux configuration which is travis-ci-opal-xenial-1553530491-f909ac5. The readme says:
It never finds
libssl.so.1.1
. I tried installing the packageslibssl-dev
andopenssl
, but it won't find the dynamic lib...The text was updated successfully, but these errors were encountered: