Skip to content

Latest commit

 

History

History
67 lines (44 loc) · 822 Bytes

28_Configuring-and-Running-a-Pipeline.md

File metadata and controls

67 lines (44 loc) · 822 Bytes

28. Configuring and Running a Pipeline

ls
cd java-project/
ls
vi Jenkinsfile

pipe

git status
git add .
git commit -m "setting up jenkins file"
git push origin development

pipe

pipe

pipe

pipe

pipe

pipe

pipe

pipe

pipe

pipe

pipe

pipe

pipe

pipe

pipeline {
  agent any

  stages {
     stage('build') {
     	steps {
	   sh 'ant -f build.xml -v'
	}
     }
  }
}

pipe

pipe

pipe

pipe