Skip to content
Snippets Groups Projects
Commit 4a7a23cd authored by garciadeblas's avatar garciadeblas
Browse files

Modify pass threshold to 100 for stage3-patch workflow


Change-Id: Ic11bdc47d0fc50f475c9b56c9628bce303d4d30a
Signed-off-by: default avatargarciadeblas <gerardo.garciadeblas@telefonica.com>
parent accf1171
No related branches found
No related tags found
No related merge requests found
......@@ -89,6 +89,8 @@ node("${params.NODE}") {
println("disabling stage_3 invocation")
return
}
// in this case, since this is for daily jobs, the pass threshold for robot tests should be adapted
downstream_params.add(string(name: 'ROBOT_PASS_THRESHOLD', value: '99.0'))
}
// callout to stage_2. This is a multi-branch pipeline.
downstream_job_name = "${mdg}-${stage_name}/${GERRIT_BRANCH}"
......
......@@ -46,7 +46,7 @@ properties([
string(defaultValue: '/home/jenkins/hive/kubeconfig.yaml', description: '', name: 'KUBECONFIG'),
string(defaultValue: '/home/jenkins/hive/clouds.yaml', description: '', name: 'CLOUDS'),
string(defaultValue: 'Default', description: '', name: 'INSTALLER'),
string(defaultValue: '99.0', description: '% passed Robot tests to mark the build as passed', name: 'ROBOT_PASS_THRESHOLD'),
string(defaultValue: '100.0', description: '% passed Robot tests to mark the build as passed', name: 'ROBOT_PASS_THRESHOLD'),
string(defaultValue: '80.0', description: '% passed Robot tests to mark the build as unstable (if lower, it will be failed)', name: 'ROBOT_UNSTABLE_THRESHOLD'),
])
])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment