pipeline {
  agent any
  stages {
      
        stage('Build') {
          steps {
            sh 'ls'
          }
        }
        stage('222') {
          steps {
            echo 'dklfjlksfsf'
          }
        }
        stage('333'){
            when {
                branch 'test'
            }
            steps{
                sh 'pwd'    
            }
        }
      
    }
  }
