diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..077383d --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,20 @@ +pipeline { + + agent { + label 'docker' + } + + stages { + stage('Checkout') { + steps { + git branch: 'b1', changelog: false, poll: false, url: 'https://github.com/simple-priv-trials/java-multi.git' + } + } + + stage('Build') { + steps { + sh ' mvn clean install ' + } + } + } +} diff --git a/multi b/multi new file mode 100644 index 0000000..98c0339 --- /dev/null +++ b/multi @@ -0,0 +1 @@ +this is multi branch trial