Update 'Jenkinsfile'
GiteaCi/Librography/pipeline/head There was a failure building this commit

This commit is contained in:
2021-10-28 17:49:10 +00:00
parent 4e0e4c3af5
commit 17ab177a81
Vendored
+7 -1
View File
@@ -1,5 +1,5 @@
pipeline { pipeline {
agent any agent { label 'Ubuntu18-openjdk1.8'}
stages { stages {
stage('Do nothing') { stage('Do nothing') {
@@ -7,5 +7,11 @@ pipeline {
sh '/bin/true' sh '/bin/true'
} }
} }
stage('build') {
steps {
sh 'ant --version'
sh 'java -version'
sh 'mkdir ~/test_jenkins_mkdir'
}
} }
} }