Files
Librography/Jenkinsfile
T
datapoint 5d30a8993a
GiteaCi/Librography/pipeline/head There was a failure building this commit
Update 'Jenkinsfile'
2021-10-28 17:51:59 +00:00

18 lines
349 B
Groovy

pipeline {
agent { label 'Ubuntu18-openjdk1.8'}
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
stage('build') {
steps {
sh 'ant --version'
sh 'java -version'
sh 'mkdir ~/test_jenkins_mkdir'
}
}
}
}