-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathJenkinsfile
36 lines (31 loc) · 936 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!groovy
def BN = (BRANCH_NAME == 'master' || BRANCH_NAME.startsWith('releases/')) ? BRANCH_NAME : 'releases/2025-07'
library "knime-pipeline@$BN"
properties([
pipelineTriggers([
upstream('knime-js-core/' + env.BRANCH_NAME.replaceAll('/', '%2F'))
]),
parameters(workflowTests.getConfigurationsAsParameters()),
buildDiscarder(logRotator(numToKeepStr: '5')),
disableConcurrentBuilds()
])
try {
parallel (
'Tycho Build': {
knimetools.defaultTychoBuild('org.knime.update.workbench')
},
'Integrated Workflowtests': {
workflowTests.runIntegratedWorkflowTests(profile: 'test')
},
)
stage('Sonarqube analysis') {
env.lastStage = env.STAGE_NAME
workflowTests.runSonar([])
}
} catch (ex) {
currentBuild.result = 'FAILED'
throw ex
} finally {
notifications.notifyBuild(currentBuild.result);
}
/* vim: set ts=4: */