-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
36 lines (34 loc) · 1.35 KB
/
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
properties([
buildDiscarder(logRotator(
artifactDaysToKeepStr: '',
artifactNumToKeepStr: '',
daysToKeepStr: '30',
numToKeepStr: '30'
)),
parameters([
[
$class : 'CascadeChoiceParameter',
choiceType : 'PT_SINGLE_SELECT',
description : null,
filterLength : 1,
filterable : false,
name : 'VERSION',
randomName : 'choice-parameter-245877844563629',
referencedParameters: '',
script : [$class: 'ScriptlerScript', parameters: [], scriptlerScriptId: 'digator_opennlp_version.groovy']
],
[
$class : 'CascadeChoiceParameter',
choiceType : 'PT_SINGLE_SELECT',
description : null,
filterLength : 1,
filterable : false,
name : 'OPENNLP_VERSION',
randomName : 'choice-parameter-417264169992283',
referencedParameters: '',
script : [$class: 'ScriptlerScript', parameters: [], scriptlerScriptId: 'opennlp_version.groovy']
],
choice(choices: ['v1', 'v2'], name: 'MODEL_GENERATION'),
])])
utils_check_first_run()
k8s_build()