pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
sh 'env'
}
stage('Test'){
sh 'echo test'
stage('Deploy') {
sh 'echo publish'