pipeline {
    agent none
    agent any

    stages {
        stage('Build') {
            steps {
                sh 'env'
            }
        }
    }
}
