Skip to content

Commit

Permalink
fix relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
abique committed Sep 24, 2024
1 parent 0788d04 commit e0e4f6a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions jenkins/build.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ pipeline {
post {
always {
zip zipFile: 'linux-vcpkg-logs.zip', archive: true, overwrite: true,
glob: 'vcpkg/buildtrees/**/*.log, vcpkg/installed/vcpkg/issue_body.md',
glob: 'buildtrees/**/*.log, installed/vcpkg/issue_body.md',
dir: 'vcpkg/'

zip zipFile: 'linux-clap-plugins.zip', archive: true, overwrite: true,
glob: 'builds/ninja-vcpkg/plugins/Release/*.clap',
file: 'clap-plugins.clap',
dir: 'builds/ninja-vcpkg/plugins/Release/'
}
}
Expand Down Expand Up @@ -102,11 +102,11 @@ pipeline {
post {
always {
zip zipFile: 'macOS-vcpkg-logs.zip', archive: true, overwrite: true,
glob: 'vcpkg/buildtrees/**/*.log, vcpkg/installed/vcpkg/issue_body.md',
glob: 'buildtrees/**/*.log, installed/vcpkg/issue_body.md',
dir: 'vcpkg/'

zip zipFile: 'macOS-clap-plugins.zip', archive: true, overwrite: true,
glob: 'builds/ninja-vcpkg/plugins/Release/*.clap',
file: 'clap-plugins.clap',
dir: 'builds/ninja-vcpkg/plugins/Release/'
}
}
Expand Down Expand Up @@ -139,11 +139,11 @@ pipeline {
post {
always {
zip zipFile: 'windows-vcpkg-logs.zip', archive: true, overwrite: true,
glob: 'vcpkg/buildtrees/**/*.log, vcpkg/installed/vcpkg/issue_body.md',
glob: 'buildtrees/**/*.log, installed/vcpkg/issue_body.md',
dir: 'vcpkg/'

zip zipFile: 'windows-clap-plugins.zip', archive: true, overwrite: true,
glob: 'builds/vs-vcpkg/plugins/Release/*.clap',
file: 'clap-plugins.clap',
dir: 'builds/vs-vcpkg/plugins/Release/'
}
}
Expand Down

0 comments on commit e0e4f6a

Please sign in to comment.