Merge branch 'eugenp:master' into master

This commit is contained in:
edizor
2023-01-20 16:10:28 +08:00
committed by GitHub
32 changed files with 797 additions and 137 deletions

View File

@@ -0,0 +1,16 @@
pipeline {
agent any
stages {
stage('tryCatch') {
steps {
script {
try {
sh 'test_script.sh'
} catch (e) {
echo "An error occurred: ${e}"
}
}
}
}
}
}