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

17 lines
347 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'
}
}
}