Note
esta es una nota de aviso
Este proyecto esta pensado como practica de implementacion de librearias compartidas en Jenkins usando groovy
Libreria: Groovy, yml y java
@Library('shared-library@master')
import sharedLibrary.toolsJenkins
def tools = new toolsJenkins(steps, this)
try {
node {
stage('execute Sh') {
tools.executeSh()
}
stage('verify Python') {
tools.verifyPython()
}
stage('execute Py') {
tools.executePy()
}
}
} catch (e) {
throw e
}