This is an automated email from the ASF dual-hosted git repository.
jianbin pushed a commit to branch 2.x
in repository https://gitbox.apache.org/repos/asf/incubator-seata.git
The following commit(s) were added to refs/heads/2.x by this push:
new 481d1aa7ce optimize: update jib-maven-plugin version and increase
parallel test execution limits (#7943)
481d1aa7ce is described below
commit 481d1aa7ce0f0df7d39649735a841680e8b89e2f
Author: funkye <[email protected]>
AuthorDate: Fri Jan 16 13:52:44 2026 +0800
optimize: update jib-maven-plugin version and increase parallel test
execution limits (#7943)
---
.github/workflows/test-druid.yml | 1 +
.github/workflows/test-ubuntu.yml | 5 +++--
.github/workflows/test.yml | 4 ++--
build/pom.xml | 2 +-
changes/en-us/2.6.0.md | 4 +++-
changes/en-us/2.x.md | 2 ++
changes/zh-cn/2.6.0.md | 4 +++-
changes/zh-cn/2.x.md | 1 +
8 files changed, 16 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/test-druid.yml b/.github/workflows/test-druid.yml
index 89dd39ed02..463d75116f 100644
--- a/.github/workflows/test-druid.yml
+++ b/.github/workflows/test-druid.yml
@@ -39,6 +39,7 @@ jobs:
name: "test-druid"
runs-on: ubuntu-24.04
strategy:
+ max-parallel: 6
fail-fast: false
matrix:
druid: [
diff --git a/.github/workflows/test-ubuntu.yml
b/.github/workflows/test-ubuntu.yml
index f41847a3bf..9bcd5732c7 100644
--- a/.github/workflows/test-ubuntu.yml
+++ b/.github/workflows/test-ubuntu.yml
@@ -39,7 +39,7 @@ jobs:
options: --health-cmd="curl -f http://localhost:8848/nacos"
--health-interval=10s --health-timeout=5s --health-retries=3
--health-start-period=30s
runs-on: "${{ matrix.os }}"
strategy:
- max-parallel: 3
+ max-parallel: 6
fail-fast: false
matrix:
java: [ 8, 11, 17, 21, 25 ]
@@ -96,7 +96,7 @@ jobs:
options: --health-cmd="curl -f http://localhost:8848/nacos"
--health-interval=10s --health-timeout=5s --health-retries=3
--health-start-period=30s
runs-on: "${{ matrix.os }}"
strategy:
- max-parallel: 3
+ max-parallel: 6
fail-fast: false
matrix:
java: [ 17, 21, 25 ]
@@ -142,6 +142,7 @@ jobs:
name: "test-arm64"
runs-on: ubuntu-24.04-arm
strategy:
+ max-parallel: 6
fail-fast: false
matrix:
springboot: [
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 3004bee0dc..ba34c0a7ec 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -25,7 +25,7 @@ jobs:
name: "test"
runs-on: "${{ matrix.os }}"
strategy:
- max-parallel: 3
+ max-parallel: 6
fail-fast: false
matrix:
java: [ 8, 11, 17, 21 ]
@@ -85,7 +85,7 @@ jobs:
name: "test-springboot3.x"
runs-on: "${{ matrix.os }}"
strategy:
- max-parallel: 3
+ max-parallel: 6
fail-fast: false
matrix:
java: [ 17, 21, 25 ]
diff --git a/build/pom.xml b/build/pom.xml
index 13a2eccc30..46d776c0f5 100644
--- a/build/pom.xml
+++ b/build/pom.xml
@@ -123,7 +123,7 @@
<maven-shade-plugin.version>2.4.3</maven-shade-plugin.version>
<maven-dependency-plugin.version>3.0.2</maven-dependency-plugin.version>
<maven-assembly-plugin.version>3.0.0</maven-assembly-plugin.version>
- <jib-maven-plugin.version>3.3.0</jib-maven-plugin.version>
+ <jib-maven-plugin.version>3.5.1</jib-maven-plugin.version>
<git-commit-id-plugin.version>4.9.10</git-commit-id-plugin.version>
<frontend-maven-plugin.version>1.15.0</frontend-maven-plugin.version>
<!-- Deploy && GPG -->
diff --git a/changes/en-us/2.6.0.md b/changes/en-us/2.6.0.md
index 1a10fd3a7e..f10c809439 100644
--- a/changes/en-us/2.6.0.md
+++ b/changes/en-us/2.6.0.md
@@ -124,6 +124,7 @@ Add changes here for all PR submitted to the 2.x branch.
- [[#7909](https://github.com/apache/incubator-seata/pull/7909)] add comments
to the namingserver address configuration in console application file
- [[#7913](https://github.com/apache/incubator-seata/pull/7913)] remove
@author info
- [[#7931](https://github.com/apache/incubator-seata/pull/7931)] pin the
Spring version for namingserver and console
+- [[#7942](https://github.com/apache/incubator-seata/pull/7942)] update
jib-maven-plugin version and increase parallel test execution limits
### security:
@@ -183,6 +184,7 @@ Add changes here for all PR submitted to the 2.x branch.
- [[#7906](https://github.com/apache/incubator-seata/pull/7906)] add test for
Fury/Fory
- [[#7907](https://github.com/apache/incubator-seata/pull/7907)] test: fixes
CI errors caused by timing issues in ZkConfigurationTest
- [[#7912](https://github.com/apache/incubator-seata/pull/7912)] test: add
Antlr tests to improve test coverage
+- [[#7933](https://github.com/apache/incubator-seata/pull/7933)] oscar test
cases should only run on Druid 1.2.5 and higher versions
### refactor:
@@ -241,4 +243,4 @@ Thanks to these contributors for their code commits. Please
report an unintended
- [MaoMaoandSnail](https://github.com/MaoMaoandSnail)
-Also, we receive many valuable issues, questions and advices from our
community. Thanks for you all.
+Also, we receive many valuable issues, questions and advices from our
community. Thanks for you all.
\ No newline at end of file
diff --git a/changes/en-us/2.x.md b/changes/en-us/2.x.md
index 980b4d2a25..92e9d15aa4 100644
--- a/changes/en-us/2.x.md
+++ b/changes/en-us/2.x.md
@@ -32,8 +32,10 @@ Add changes here for all PR submitted to the 2.x branch.
### optimize:
- [[#7930](https://github.com/apache/incubator-seata/pull/7930)] pin the
Spring version for namingserver and console
+- [[#7943](https://github.com/apache/incubator-seata/pull/7943)] update
jib-maven-plugin version and increase parallel test execution limits
- [[#7934](https://github.com/apache/incubator-seata/pull/7934)] add OkHttp
and MockWebServer dependencies to resolve version conflicts
+
### security:
diff --git a/changes/zh-cn/2.6.0.md b/changes/zh-cn/2.6.0.md
index 62c09278b1..1ab8854be5 100644
--- a/changes/zh-cn/2.6.0.md
+++ b/changes/zh-cn/2.6.0.md
@@ -123,6 +123,7 @@
- [[#7909](https://github.com/apache/incubator-seata/pull/7909)]
在控制台配置文件中为namingserver地址配置添加注释
- [[#7913](https://github.com/apache/incubator-seata/pull/7913)] 移除 @author 信息
- [[#7931](https://github.com/apache/incubator-seata/pull/7931)]
固定namingserver和console的spring版本
+- [[#7942](https://github.com/apache/incubator-seata/pull/7942)]
升级jib-maven-plugin版本和提高ci并行度
### security:
@@ -183,6 +184,7 @@
- [[#7906](https://github.com/apache/incubator-seata/pull/7906)] Fury/Fory
增加单元测试
- [[#7907](https://github.com/apache/incubator-seata/pull/7907)] test:
修复ZkConfigurationTest的时序问题导致的ci错误
- [[#7912](https://github.com/apache/incubator-seata/pull/7912)] test: 添加
Antlr 测试以提高测试覆盖率
+- [[#7933](https://github.com/apache/incubator-seata/pull/7933)]
oscar数据库测试用例仅运行在druid大于等于1.2.5版本
### refactor:
@@ -239,4 +241,4 @@
- [MaoMaoandSnail](https://github.com/MaoMaoandSnail)
-同时,我们收到了社区反馈的很多有价值的issue和建议,非常感谢大家。
+同时,我们收到了社区反馈的很多有价值的issue和建议,非常感谢大家。
\ No newline at end of file
diff --git a/changes/zh-cn/2.x.md b/changes/zh-cn/2.x.md
index fcd6eed0e7..609b123bb8 100644
--- a/changes/zh-cn/2.x.md
+++ b/changes/zh-cn/2.x.md
@@ -32,6 +32,7 @@
### optimize:
- [[#7930](https://github.com/apache/incubator-seata/pull/7930)]
固定namingserver和console的Spring版本
+- [[#7943](https://github.com/apache/incubator-seata/pull/7943)]
升级jib-maven-plugin版本和提高ci并行度
- [[#7934](https://github.com/apache/incubator-seata/pull/7934)] 添加 OkHttp 和
MockWebServer 依赖来解决版本冲突
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]