You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
348 B

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'
}
}
}
}