Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9385ee5
[SUREFIRE-1643] Make surefire junit5 supporting parallel execution an…
olamy Mar 16, 2025
584fcd6
java 21
olamy Mar 16, 2025
81bf277
fix typo
olamy Mar 16, 2025
296e96a
build with mvn 3.8.8
olamy Mar 16, 2025
72b1c8a
avoid NPE
olamy Mar 16, 2025
36bdc88
use getName if no sourceName
olamy Mar 16, 2025
f59cc1d
restore backward compat
olamy Mar 17, 2025
d2e7858
simplify jenkinsfile
olamy Mar 17, 2025
8e24d2c
comment
olamy Mar 17, 2025
8b1ee72
comment
olamy Mar 17, 2025
0f2e788
ignore no sense test
olamy Mar 17, 2025
74dc32c
do not use LegacyXmlReportGeneratingListener for junit5
olamy Mar 17, 2025
ebc4ee9
[SUREFIRE-1643] fix backward compatibility with other providers
olamy Mar 17, 2025
2123b2e
ignore possible flaky test
olamy Mar 17, 2025
7995ebc
upgrade to last mockito supporting java8 and fix mockito usage
olamy Mar 18, 2025
2b1f9c2
use more nodes
olamy Mar 18, 2025
1c36c16
relax this performance test
olamy Mar 18, 2025
6a27e38
Test IT test for SUREFIRE-1643
olamy Mar 18, 2025
1ca4df9
[SUREFIRE-1643] fix plumbing
olamy Mar 19, 2025
e6fe26c
dependency not needed
olamy Mar 19, 2025
c26e98d
remove not needed change
olamy Mar 19, 2025
c41541f
remove not needed change
olamy Mar 19, 2025
92cb07b
test with default forknode impl
olamy Mar 19, 2025
5c7e738
fix last it
olamy Mar 20, 2025
c481a99
reduce number of ITS threads running in parallel
olamy Mar 20, 2025
ae50321
remove useless docck-maven-plugin
olamy Mar 20, 2025
7402d84
fix version in IT file
olamy Mar 20, 2025
cced9cd
restore a core version we do not even support anymore
olamy Mar 20, 2025
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
Prev Previous commit
restore a core version we do not even support anymore
Signed-off-by: Olivier Lamy <olamy@apache.org>
  • Loading branch information
olamy committed Mar 20, 2025
commit cced9cd1e557ff6b96da41862421373a4fae5253
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ properties(
)
// final def oses = ['linux':'ubuntu && maven', 'windows':'windows-he']
final def oses = ['linux':'ubuntu']
final def mavens = env.BRANCH_NAME == 'master' ? ['3.x.x', '3.8.8'] : ['3.x.x']
final def mavens = env.BRANCH_NAME == 'master' ? ['3.x.x', '3.6.3'] : ['3.x.x']
// all non-EOL versions and the first EA
final def jdks = [21, 17, 11, 8]

Expand Down