Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 1.The Checks 4,5,10,11 are triggered by TeamCity. The TeamCity service will detect the change of Doris Pull Request every 10 minutes and trigger the corresponding check(TeamCity Pipeline).

 2.The other Checks are triggered by Github Action. They will be triggered immediately after PR is submitted or updated.


Now we'll update the The pipeline trigger on teamcity to include the following special keyword comments in the PULL REQUEST COMMENT section.

...

        external: This keyword will trigger tests for the external component

Note:

...

  • To avoid error firing, you need to include both run and the specified keyword,like "run p0" , "run buildall",this is so important!

  • p0,p1, and external pipelining all depend on compile-phase output, so when you want to retry one of these pipelining separately, you need to make sure that the corresponding branch has compiled output. If not, please first run the compile phase by adding the keyword with compile in the comment area of the corresponding pull request. Build the dependency pipeline after compiling.

For example:
  • When developers add a comment with a buildall keyword to the Conversation area of the PULL REQUEST, for example: "run buildall cases", git action will detect this behavior and trigger FE single test, BE single test, and code compilation pipeline. when the code compilation pipeline. p0 and p1 pipeline. if you want to execute data lake related use cases simultaneously, You can add external to buildallhave a comment like "run buildall and external", and the external pipeline will automatically start the data lake environment to perform the relevant tests.

...

  • When developers find a pipeline running error but want to retry it, they can add a comment with the pipeline keyword in the Conversation area of the PULL REQUEST, such as rerun "run p1". If p1 fails the test due to lack of compilation output, So we need to add a comment with the "run compile" keyword first, and after successful compilation, p0,p1 pipeline will be automatically triggered.

...