Projet_JAVA_P2P_STRI2A/jenkinsfile

24 lines
453 B
Plaintext
Raw Normal View History

2020-03-10 17:32:05 +01:00
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
}
}
}