pipeline {
  agent any
  stages {
    stage('Build') {
      parallel {
        stage('Build') {
          steps {
            sh 'ls'
          }
        }
        stage('222') {
          steps {
            echo 'dklfjlksfsf'
            input(message:'Yes or No',ok:'Yse')
          }
        }
        stage('333'){
            when {
                branche 'test'
            }
            steps{
                sh 'pwd'    
            }
        }
      }
    }
  }
}