pipeline {
  agent any
  stages {
    stage("Build") {
      steps {
        sh "echo CI-OK build de demo-ci en $(hostname)"
      }
    }
  }
}
