Skip to content

Commit

Permalink
Comment all Jenkins step regarding the C++ Server
Browse files Browse the repository at this point in the history
  • Loading branch information
SebMeunier committed Nov 22, 2024
1 parent 4cbee17 commit 3d10f73
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ pipeline {

stage('Sign') {
steps {
copyArtifacts filter: '**/Cryptifix-x64-*.zip', fingerprintArtifacts: true, projectName: 'IntuiFace/master', selector: lastSuccessful(), target: 'cryptifix'
script {
def files = findFiles(glob: '**/Cryptifix-x64-*.zip')
unzip zipFile: "cryptifix\\${files[0].name}", dir: 'cryptifix'
}
bat "cryptifix\\Cryptifix.exe sign \"dist\\x64\\Release\\FaceDetection\" --LicenseEdition=FREE --IsAllowedByNonInteractivePlayer=false"
callBuildScript workspace: workspace, script:'signcode.pl', params: "\"OpenVINOFaceDetectionServer\" \"dist\\x64\\Release\\OpenVINOFaceDetectionServer\\*.exe\""
copyArtifacts filter: '**/Cryptifix-x64-*.zip', fingerprintArtifacts: true, projectName: 'IntuiFace/master', selector: lastSuccessful(), target: 'cryptifix'
script {
def files = findFiles(glob: '**/Cryptifix-x64-*.zip')
unzip zipFile: "cryptifix\\${files[0].name}", dir: 'cryptifix'
}
bat "cryptifix\\Cryptifix.exe sign \"dist\\x64\\Release\\FaceDetection\" --LicenseEdition=FREE --IsAllowedByNonInteractivePlayer=false"
//callBuildScript workspace: workspace, script:'signcode.pl', params: "\"OpenVINOFaceDetectionServer\" \"dist\\x64\\Release\\OpenVINOFaceDetectionServer\\*.exe\""
}
}

stage('Package') {
steps {
zip archive: true, dir: "dist\\x64\\Release\\OpenVINOFaceDetectionServer", glob: '', zipFile: "OpenVINOFaceDetectionServer.zip"
zip archive: true, dir: "dist\\x64\\Release\\FaceDetection", glob: '', zipFile: "FaceDetection.zip"
//zip archive: true, dir: "dist\\x64\\Release\\OpenVINOFaceDetectionServer", glob: '', zipFile: "OpenVINOFaceDetectionServer.zip"
zip archive: true, dir: "dist\\x64\\Release\\FaceDetection", glob: '', zipFile: "FaceDetection.zip"
}
}
stage('Archive') {
steps {
archiveArtifacts 'OpenVINOFaceDetectionServer.zip'
// archiveArtifacts 'OpenVINOFaceDetectionServer.zip'
archiveArtifacts 'FaceDetection.zip'
}
}
Expand Down

0 comments on commit 3d10f73

Please sign in to comment.