fix jenkinsfile

This commit is contained in:
kirill.labutin 2026-08-13 23:10:35 +03:00
parent 7f69edff5f
commit cb42ed2ed2
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -34,7 +34,7 @@ pipeline {
stage('Maven package') {
steps {
sh 'mvn -B clean package'
sh 'mvn -B clean package verify'
}
}
@ -53,8 +53,8 @@ pipeline {
archiveArtifacts artifacts: "pfsdn-${VERSION}.tar.gz", fingerprint: true
echo "Saving pfapp artifact target/${VERSION}.pfapp"
archiveArtifacts artifacts: "target/${VERSION}.pfapp", fingerprint: true
echo "Saving pfapp artifact ${VERSION}.pfapp"
archiveArtifacts artifacts: "launcher/target/${VERSION}.pfapp", fingerprint: true
echo "TODO: deploy ${VERSION}.pfapp to repository (not implemented yet)"
}