Skip to content

Commit 2b9d3d0

Browse files
mPokornyETMgithub-actions[bot]
authored andcommitted
fix: Remove env.CHANGE_ID usage from Jenkinsfile top level
env is not available at Jenkinsfile parse time. Keep test tags and Maven profile for manual use. CI integration needs buildPlugin library support.
1 parent 93150f2 commit 2b9d3d0

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

Jenkinsfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@
22
See the documentation for more options:
33
https://github.com/jenkins-infra/pipeline-library/
44
*/
5-
6-
// Skip slow tests on PRs for faster feedback; run all tests on release
7-
def profile = env.CHANGE_ID ? '-Pfast-tests' : ''
8-
95
buildPlugin(
106
forkCount: '1C', // Run parallel tests on ci.jenkins.io for lower costs, faster feedback
117
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
128
configurations: [
13-
[platform: 'linux', jdk: 25, extraMavenArguments: profile],
14-
[platform: 'windows', jdk: 21, extraMavenArguments: profile],
9+
[platform: 'linux', jdk: 25],
10+
[platform: 'windows', jdk: 21],
1511
])

0 commit comments

Comments
 (0)