File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,9 @@ stage('Configure') {
128
128
testLauncherArgs : ' --enable-preview' ,
129
129
condition : TestCondition . AFTER_MERGE ),
130
130
new JdkBuildEnvironment (testJavaVersion : ' 25' , testCompilerTool : ' OpenJDK 25 Latest' ,
131
+ testLauncherArgs : ' --enable-preview' ,
132
+ condition : TestCondition . AFTER_MERGE ),
133
+ new JdkBuildEnvironment (testJavaVersion : ' 26' , testCompilerTool : ' OpenJDK 26 Latest' ,
131
134
testLauncherArgs : ' --enable-preview' ,
132
135
condition : TestCondition . AFTER_MERGE )
133
136
],
Original file line number Diff line number Diff line change 1807
1807
<arquillian .jvm.args.java-version>-Dnet.bytebuddy.experimental=true</arquillian .jvm.args.java-version>
1808
1808
</properties >
1809
1809
</profile >
1810
+ <profile >
1811
+ <id >testWithJdk26</id >
1812
+ <activation >
1813
+ <property >
1814
+ <name >java-version.test.release</name >
1815
+ <value >26</value >
1816
+ </property >
1817
+ </activation >
1818
+ <properties >
1819
+ <!-- ForbiddenAPIs doesn't work with JDK25+ yet -->
1820
+ <forbiddenapis .skip>true</forbiddenapis .skip>
1821
+ <!-- We need net.bytebuddy.experimental=true to make Bytebuddy work with JDK25+ -->
1822
+ <surefire .jvm.args.java-version>-Dnet.bytebuddy.experimental=true</surefire .jvm.args.java-version>
1823
+ <arquillian .jvm.args.java-version>-Dnet.bytebuddy.experimental=true</arquillian .jvm.args.java-version>
1824
+ </properties >
1825
+ </profile >
1810
1826
<profile >
1811
1827
<!--
1812
1828
This profile set some properties to make running reproducibility check build easier.
You can’t perform that action at this time.
0 commit comments