mlpack

mlpack continuous integration (CI) systems

Every pull request submitted to mlpack goes through a number of automated checks to make sure that all unit tests pass, all code matches the desired style guide, documentation does not contain any broken links, and so on and so forth.

In general, all CI checks need to pass for PRs to be merged, but like any complex project, there are occasionally spurious failures or other unrelated problems.

Also you can see the list of CI infrastructure.

šŸ”— Basic compilation and test jobs

Basic compilation and testing is done on Github Actions. We use Github Actions primarily because of the large number of resources that an mlpack build takes; our own internal resources are thus preserved for more specific usage.

Link: mlpack on Github Actions

If your build is failing on Github Actions:

šŸ”— Binding tests

Inside of .github/workflows/ci.yml, the bindings are configured and built (depending on the parameters of the matrix build) using a local Github action. Similarly, the binding tests are also run using a local Github action.

šŸ”— Documentation builds

The ā€˜documentation link checkā€™ job and ā€˜documentation snippet buildā€™ jobs build and tests all documentation, checking:

All of the scripts to perform these builds are located in the scripts/ directory, so that they can be run locally. On CI, these are defined as two Jenkins jobs in .jenkins/doc-link-check/Jenkinsfile and .jenkins/doc-snippet-build/Jenkinsfile.

When writing new documentation, be sure to test it locallyā€”going back and forth with the link checker job on Jenkins and snippet build job on Jenkins can be very tedious.

šŸ”— Style checks

The style checker job runs on Jenkins and is defined in .jenkins/style-checks/Jenkinsfile.

šŸ”— Cross-compilation checks

The cross-compilation checks run on Jenkins and test cross-compilation of mlpack to a number of low-resource and embedded devices. The job is defined in .jenkins/cross-compilation/Jenkinsfile.

šŸ”— Memory checks

The memory checks run valgrind on any tests that were detected to be changed. This detection is performed via a heuristic and may not always be correct. The job is defined in .jenkins/memory-checks/Jenkinsfile.

If there are any memory issues with the code, this should be reported by a failed memory check job. If you encounter one of these, try compiling with debugging symbols and running valgrind on the affected test, like this:

valgrind --leak-check=full --track-origins=yes bin/mlpack_test "TestName"

šŸ”— List of CI infrastructure

Many physical systems are involved with testing mlpack and are hooked up to Jenkins.

Link: Jenkins (ci.mlpack.org)