17 lines
342 B
Plaintext
17 lines
342 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('tryCatch') {
|
||
|
steps {
|
||
|
script {
|
||
|
try {
|
||
|
sh 'test_script.sh'
|
||
|
} catch (e) {
|
||
|
echo "An error occurred: ${e}"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|