You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
453 B
Plaintext
24 lines
453 B
Plaintext
5 years ago
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('build') {
|
||
|
steps {
|
||
|
sh 'javac -cp "./src" -d "./bin" $(find . -iname "*.java" -type f) -Xlint:deprecation'
|
||
|
}
|
||
|
}
|
||
|
stage('run') {
|
||
|
steps {
|
||
|
sh 'ls'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
post {
|
||
|
success {
|
||
|
archiveArtifacts artifacts: 'client.jar', fingerprint: true
|
||
|
archiveArtifacts artifacts: 'server.jar', fingerprint: true
|
||
|
archiveArtifacts artifacts: 'sources.tar.gz', fingerprint: false
|
||
|
}
|
||
|
}
|
||
|
}
|