Commit 6072b197 authored by Marco Ortiz's avatar Marco Ortiz

Preparación para la integración con el nuevo jenkins

parent 2f005480
...@@ -2,7 +2,7 @@ pipeline { ...@@ -2,7 +2,7 @@ pipeline {
agent any agent any
parameters { parameters {
string(defaultValue: 'false', description: 'Ejecuta los procesos docker', name: 'include_docker') string(defaultValue: 'no', description: 'Ejecuta los procesos docker', name: 'include_docker')
} }
environment { environment {
...@@ -22,8 +22,8 @@ pipeline { ...@@ -22,8 +22,8 @@ pipeline {
stages { stages {
stage ('Initialize') { stage ('Initialize') {
when { when {
expression { parameters name: 'include_docker', value: 'yes' } expression { params name: 'include_docker', value: 'yes' }
} }
steps { steps {
echo "You choose: ${params.include_docker}" echo "You choose: ${params.include_docker}"
sh ''' sh '''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment