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