1
0
Fork 0
llvm-premerge-checks/docs/user_doc.md
2020-02-26 15:46:15 +01:00

3.9 KiB

Pre-merge checks

The pre-merge checks for the LLVM project are a continuous integration (CI) workflow. The workflow checks the patches the developers upload to the LLVM Phabricator instance. Phabricator is the code review tool in the LLVM project. The workflow checks the patches before a user merges them the master branch - thus the term pre-merge testing. When a user uploads a patch to the LLVM Phabricator, Phabricator triggers the checks and then displays the results.

The checks comprise of these steps:

  1. Checkout of the git repository
  2. Apply the patch -- arc patch
  3. Run Cmake -- see run_cmake.sh for details
  4. Build the binaries -- ninja all
  5. Run the test suite -- ninja check-all
  6. Run clang-format and clang-tidy on the diff.

The checks are executed on one Linux platform (Debian Testing on amd64 with the clang-8 tool chain) at the moment. Builds and Test for Windows (amd64, Visual Studio 2017) are currently in beta testing. The plan is to add more platforms, in the future.

The CI system checks the patches before a user merges them to the master branch. This way bugs in a patch are contained during the code review stage and do not pollute the master branch. The more bugs the CI system can catch during the code review phase, the more stable and bug-free the master branch will become.

Feedback

If you find any problems please raise an issue on github.

Opt out

In case you want to opt out entirely of pre-merge testing, add yourself to the OPT OUT project.

If you decide to opt out, please let us know why, so we might be able to improve in the future.

Sign up for beta test

To get the latest features, sign up for the pre-merge beta testing by adding yourself to the "pre-merge beta testing" project on Phabricator.

Requirements

The builds are only triggered if the Revision in Phabricator is created/updated via arc diff. If you update a Revision via the Web UI it will not trigger a build.

To get a patch on Phabricator tested the build server must be able to apply the patch to the checked out git repository. If you want to get your patch tested, please make sure that that either:

  • You set a git hash as sourceControlBaseRevision in Phabricator which is available on the Github repository,
  • or you define the dependencies of your patch in Phabricator,
  • or your patch can be applied to the master branch.

Only then can the build server apply the patch locally and run the builds and tests.

Integration in Phabricator

Once you're signed up, Phabricator will automatically trigger a build for every new patch you upload or every existing patch you modify. Phabricator shows the build results at the top of the entry: build status

Bot will compile and run tests, run clang-format and clang-tidy on lines changed.

If a unit test failed, this is shown below the build status. You can also expand the unit test to see the details: unit test results

The build logs are stored for 90 days and automatically deleted after that.

You can also trigger a build manually by using the "Run Plan Manually" link on the Harbormaster page and entering a revision ID in the pop-up window.

Reporting issues

If you notice any bugs, please create a new issue.

Contributing

We're happy to get help on improving the infrastructure and the workflows. If you're interested please contact Christian Kühnel.