-
Notifications
You must be signed in to change notification settings - Fork 314
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
travis pipeline is slow #425
Comments
I think it's time to migrate from travis-ci.org - they are closing down. Github Actions should be an ok replacement? |
Agree completely. |
I think we can close this now that clippy is in our (github actions) CI. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The pipline takes significant ammount of time. Think there is a better way of doing this.
1.
runmerged in Do not run benchmarks in the pipline. #426cargo bench --no-run
insdead ofcargo bench
as they take a while and I suspect results are not looked at. Feel like benchmarking results are better run locally. Checking that they build would always be nice.2. Building on all platforms, while just running test, check, (fmt, clippy)... on one toolchain (stable or nightly)
3. Add caching for builds and compiler. ref: https://docs.travis-ci.com/user/languages/rust/#dependency-management. Ref add caching to travis #429
The text was updated successfully, but these errors were encountered: