travis: Remove valgrind #18899

pull MarcoFalke wants to merge 1 commits into bitcoin:master from MarcoFalke:2005-RemoveTravis changing 1 files +0 −10
  1. MarcoFalke commented at 8:15 pm on May 6, 2020: member

    When the valgrind run was added, it took 2 hours. Travis kindly raised the timeout limit to the maximum possible of 3 hours.

    Today, a full build of Bitcoin Core with all tests takes more than three hours. Thus, it is impossible to run all tests on travis.

    Moreover, the feedback loop for developers that create a pull request takes at least 2 hours, but in some cases (when the travis queue is full) until the next day. This is unacceptable.

    Fix both issues by removing the build from travis.

    Please note that the ci/test/ configurations are not removed. They will stay in the repo and can be executed anywhere (just not on travis).

  2. travis: Remove valgrind fa082d0a57
  3. jnewbery commented at 8:26 pm on May 6, 2020: member

    Concept ACK! I think it’s very important for developer experience to be able to iterate quickly on pull requests. If someone suggests a change and the author pushes it, then the ci should run quickly so reviewers don’t feel blocked.

    I think it would make sense to have a valgrind run with just the unit tests, and perhaps a basic functional test, as long as that could be done in a reasonable time. I also think it’d be worthwhile doing a full valgrind test on nightly builds somewhere.

  4. practicalswift commented at 8:45 pm on May 6, 2020: contributor
    Oh, please don’t remove Valgrind until we have an MSAN job in Travis. We really need automated detection of uninitialized memory reads enabled in Travis.
  5. promag commented at 9:59 pm on May 6, 2020: member
    Could run the job only in master (or non PR branch) or use travis cron?
  6. DrahtBot added the label Tests on May 6, 2020
  7. jnewbery commented at 10:07 pm on May 6, 2020: member

    @practicalswift I think it’s a trade-off. valgrind tests are useful, but running all the functional tests in valgrind for every branch push in every PR is terrible for fast iteration and developer experience. I fully support doing valgrind testing, just not for every functional test in every PR.

    Things like this:

    image

    (7 hours since I pushed and travis is still pending) mean that I can’t make progress on PRs. That branch is failing because of a valgrind timeout in a test, and because iteration is so slow, that PR hasn’t made any progress for two days.

  8. DrahtBot commented at 0:45 am on May 7, 2020: member

    The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.

    Conflicts

    Reviewers, this pull request conflicts with the following ones:

    • #18677 (Multiprocess build support by ryanofsky)
    • #18288 (build: Add MemorySanitizer (MSan) in Travis to detect use of uninitialized memory by practicalswift)
    • #10102 ([experimental] Multiprocess bitcoin by ryanofsky)

    If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.

  9. jnewbery commented at 2:17 am on May 7, 2020: member

    Travis completed in 1hr3mins. That’s an improvement!

    utACK fa082d0a57afedca9122fac4aecd6a3070f06b04

  10. practicalswift commented at 6:08 am on May 7, 2020: contributor

    Oh, please don’t remove Valgrind until we have an MSAN job in Travis. We really need automated detection of uninitialized memory reads enabled in Travis.

    @practicalswift I think it’s a trade-off. valgrind tests are useful, but running all the functional tests in valgrind for every branch push in every PR is terrible for fast iteration and developer experience. I fully support doing valgrind testing, just not for every functional test in every PR.

    I agree: I think we should remove Valgrind testing in Travis as long as MSAN testing is added in the same PR.

    MSAN does not have this slowness problem :)

    As long as we have some form of automated detection of uninitialized memory reads enabled in Travis (via Valgrind or MSAN) I’m happy :)

    In summary:

    • ACK on removing Valgrind and adding MSAN.
    • NACK on removing Valgrind without adding MSAN.
  11. sipa commented at 7:17 am on May 7, 2020: member
    We could also just run Valgrind on master but not all PRs, independently of when/how msan testing is enabled.
  12. practicalswift commented at 8:11 am on May 7, 2020: contributor

    We could also just run Valgrind on master but not all PRs, independently of when/how msan testing is enabled.

    Yes, that is a very good point.

    As long as we continue guarding master on bitcoin/bitcoin from uninitialized memory reads by running the unit tests, functional tests and fuzz tests using Valgrind or MSAN I’m happy :)

  13. laanwj commented at 9:15 am on May 7, 2020: member

    I think it would make sense to have a valgrind run with just the unit tests, and perhaps a basic functional test, as long as that could be done in a reasonable time.

    I ike this idea. At least the initialization/shutdown sequence will be run at least once in valgrind in that case, which seems to be an effective use of CI resources.

    (but removing it entirely in the mean time is fine with me)

  14. practicalswift commented at 11:11 am on May 7, 2020: contributor

    I now noticed that this PR removes also the valgrind fuzz job too, is that intentional? Is running the fuzzing targets against our seed corpus under valgrind that slow? :(

    FWIW: pulling in 7e14297b28bf77ad200075480df845365fe3414c from #18288 to this PR would allow us to get both a.) good CI speed and b.) no reduction in uninitialized memory testing coverage. What are the best arguments for not doing that? :)

  15. MarcoFalke commented at 11:56 am on May 7, 2020: member

    I am going to merge this to unbreak travis. This has two ACKs and is needed as a first step for anything that is done later. If someone has ideas or implementations of how this can be improved in the future, they are more than welcome to submit pull requests and ask me for review. When those improvements are ready for merge, I am happy to take them.

    Just to respond to some points:

    • We could run it on master

    If this means run it on master in travis, then no, this is impossible as explained in the OP. The build might happen to pass right now because I reset the failing tests and the cache happens to be intact, but a fresh build without cache takes more than 3 hours. Builds that take more than 3 hours are impossible to run on travis.

    If this means to run it on master somewhere else. Then: Hell yes! The ci system has been designed to be as flexible as possible. You can run it on your raspberry pi at home, on a virtual machine at home, or even inside of docker if you know how to (hint: grep for the env var that has DANGER in it), you can also run it on any cloud ci service that supports more builds longer than 3 hours. See for example the cirrus ci config in commit 2a9e983a8dc29b0a3839d1e2a9d675944827bc67 (just an example, anything is possible)

    • We could run just the unit tests or “basic functional tests”

    I am not aware of any memory bug that was caught by just the unit test valgrind run that was not caught by any other build configuration on travis, so I think this is useless. But as I said, improvements are welcome, and if people think this is worthwhile to peruse, a follow-up improvement should be submitted.

    I am not sure how to classify “basic” functional tests and this task sounds like bikeshedding to me, where if too little tests are classified as “basic”, we will have an equivalent result of this pull request, or where too much tests are classified as “basic”, we will have an equivalent result of before this pull request.

    • We could use MSAN instead

    Sure, Concept ACK. Though, the pull is currently blocked on build system changes, which I am not capable to review.

  16. MarcoFalke merged this on May 7, 2020
  17. MarcoFalke closed this on May 7, 2020

  18. MarcoFalke deleted the branch on May 7, 2020
  19. MarcoFalke locked this on May 7, 2020

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-11-17 06:12 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me