Skip to content
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

[INLONG-8242][CI] Separate the distribution module to improve the performance of check pipeline #8243

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
<module>inlong-sort-standalone</module>
<module>inlong-manager</module>
<module>inlong-dashboard</module>
<module>inlong-distribution</module>
healchow marked this conversation as resolved.
Show resolved Hide resolved
</modules>

<properties>
Expand Down Expand Up @@ -1520,4 +1519,22 @@
<url>https://github.com/apache/inlong/actions</url>
</ciManagement>

<profiles>
<profile>
<id>distribution</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>inlong-distribution</module>
</modules>
</profile>
<profile>
<id>fast</id>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about fast change to parallel? Here we should use a more accurate word.

<activation>
<activeByDefault>false</activeByDefault>
</activation>
</profile>
</profiles>

</project>