SuccessConsole Output

+ cat Jenkinsfile
node {

  stage('checkout'){
      sh 'printenv | sort'
      checkout scm
  }
    
  stage("say hello"){
    echo "Hello world"
  }
  
  stage("say goodbye"){
    echo "Goodbye"
    sh 'echo $(pwd)'
    sh 'pwd'
    sh 'ls'
    echo "again"
    sh 'cat Jenkinsfile'
    sh 'git log --oneline -n 5'
    sh 'git status -sb'
    
    updateGitlabCommitStatus name: 'Build', state: 'success'
  }
  
}