Skip to content

Commit

Permalink
Fix minor spelling error in Jenkinsfile (elastic#19153)
Browse files Browse the repository at this point in the history
  • Loading branch information
cachedout authored and melchiormoulin committed Oct 14, 2020
1 parent 9e421ed commit 88fdf4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ pipeline {
stage('Generators Metricbeat Linux'){
steps {
// FIXME see https://github.com/elastic/beats/issues/18132
catchError(buildResult: 'SUCCESS', message: 'Ignore error temporally', stageResult: 'UNSTABLE') {
catchError(buildResult: 'SUCCESS', message: 'Ignore error temporarily', stageResult: 'UNSTABLE') {
makeTarget(context: "Generators Metricbeat Linux", target: "-C generator/_templates/metricbeat test")
makeTarget(context: "Generators Metricbeat Linux", target: "-C generator/_templates/metricbeat test-package")
}
Expand All @@ -713,7 +713,7 @@ pipeline {
stage('Generators Beat Linux'){
steps {
// FIXME see https://github.com/elastic/beats/issues/18132
catchError(buildResult: 'SUCCESS', message: 'Ignore error temporally', stageResult: 'UNSTABLE') {
catchError(buildResult: 'SUCCESS', message: 'Ignore error temporarily', stageResult: 'UNSTABLE') {
makeTarget(context: "Generators Beat Linux", target: "-C generator/_templates/beat test")
makeTarget(context: "Generators Beat Linux", target: "-C generator/_templates/beat test-package")
}
Expand All @@ -730,7 +730,7 @@ pipeline {
}
steps {
// FIXME see https://github.com/elastic/beats/issues/18132
catchError(buildResult: 'SUCCESS', message: 'Ignore error temporally', stageResult: 'UNSTABLE') {
catchError(buildResult: 'SUCCESS', message: 'Ignore error temporarily', stageResult: 'UNSTABLE') {
makeTarget(context: "Generators Metricbeat Mac OS X", target: "-C generator/_templates/metricbeat test")
}
}
Expand All @@ -751,7 +751,7 @@ pipeline {
}
steps {
// FIXME see https://github.com/elastic/beats/issues/18132
catchError(buildResult: 'SUCCESS', message: 'Ignore error temporally', stageResult: 'UNSTABLE') {
catchError(buildResult: 'SUCCESS', message: 'Ignore error temporarily', stageResult: 'UNSTABLE') {
makeTarget(context: "Generators Beat Mac OS X", target: "-C generator/_templates/beat test")
}
}
Expand Down

0 comments on commit 88fdf4c

Please sign in to comment.