fixed archiving path

This commit is contained in:
2023-11-01 15:13:40 +08:00
parent 9cb37790c2
commit c4ccec0fc3

2
Jenkinsfile vendored
View File

@@ -9,7 +9,7 @@ pipeline {
sh "./gradlew clean assemble build"
junit testResults: "build/test-results/test/*.xml"
javadoc javadocDir: "build/docs/javadoc", keepAll: true
archiveArtifacts artifacts: 'build/libs/*.jar,benchmark/build/libs/*.jar,wson-cli/build/distributions/wson-cli-envelope-*.jar,wson-cli/build/distributions/wson-cli',
archiveArtifacts artifacts: 'build/libs/*.jar,benchmark/build/libs/*.jar,wson-cli/build/libs/wson-cli-envelope-*.jar,wson-cli/build/libs/wson-cli',
allowEmptyArchive: true,
fingerprint: true,
onlyIfSuccessful: true