Details
-
Bug
-
Status: Resolved (View Workflow)
-
Blocker
-
Resolution: Fixed
-
Windows XP 32
java version "1.7.0"
Java(TM) SE Runtime Environment (build 1.7.0-b147)
Java HotSpot(TM) Client VM (build 21.0-b17, mixed mode)
Description
The zip generated by the link http://server/job/myJob/lastSuccessfulBuild/artifact/*zip*/archive.zip generates a zip file in which everything seems ok, but when you try to unzip the content with 7z for instance, it fails (compression method not supported).
I can't see anything in the logs.
BTW, the size of the file in the archive are set to 0. Could be a side effect in 7z.
It works fine with 1.531.
And finally, there was a modification of something about the compression in 1.532 related to issue JENKINS-19473.
Attachments
Issue Links
- is blocking
-
JENKINS-17236 Pluggable artifact transfer & storage
-
- Resolved
-
- is duplicated by
-
JENKINS-19912 *zip* URL produces corrupt archives
-
- Resolved
-
- is related to
-
JENKINS-26700 Download build artifacts as zip generates a corrupted file
-
- Open
-
-
JENKINS-19947 Missing base directory in ZIP from .../artifact/dir/subdir/*zip*/subdir.zip
-
- Resolved
-
Activity
Field | Original Value | New Value |
---|---|---|
Description |
The zip generated by the link http://server/job/myJob/lastSuccessfulBuild/artifact/*zip*/archive.zip generates a zip file in which everything seems ok, but when you try to unzip the content with 7z for instance, it fails (compression method not supported). BTW, the size of the file in the archive are set to 0. Could be a side effect in 7z. It works fine with 1.531. And finally, there was a modification of something about the compression in 1.532 related to issue |
The zip generated by the link http://server/job/myJob/lastSuccessfulBuild/artifact/*zip*/archive.zip generates a zip file in which everything seems ok, but when you try to unzip the content with 7z for instance, it fails (compression method not supported). I can't see anything in the logs. BTW, the size of the file in the archive are set to 0. Could be a side effect in 7z. It works fine with 1.531. And finally, there was a modification of something about the compression in 1.532 related to issue |
Labels | artifact regression zip | archive artifact gzip regression zip |
Assignee | Jesse Glick [ jglick ] |
Environment | Windows XP 32 |
Windows XP 32 java version "1.7.0" Java(TM) SE Runtime Environment (build 1.7.0-b147) Java HotSpot(TM) Client VM (build 21.0-b17, mixed mode) |
Assignee | Jesse Glick [ jglick ] | Mathieu POUSSE [ poussma ] |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Resolved [ 5 ] |
Link |
This issue is blocking |
Link |
This issue is duplicated by |
Link |
This issue is related to |
Labels | archive artifact gzip regression zip | archive artifact gzip lts-candidate regression zip |
Labels | archive artifact gzip lts-candidate regression zip | 1.532.1-fixed archive artifact gzip regression zip |
Assignee | Mathieu POUSSE [ poussma ] | |
Resolution | Fixed [ 1 ] | |
Status | Resolved [ 5 ] | Reopened [ 4 ] |
Assignee | Mathieu POUSSE [ poussma ] | |
Resolution | Fixed [ 1 ] | |
Status | Reopened [ 4 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] | |
Status | Resolved [ 5 ] | Reopened [ 4 ] |
Resolution | Fixed [ 1 ] | |
Status | Reopened [ 4 ] | Resolved [ 5 ] |
Labels | 1.532.1-fixed archive artifact gzip regression zip | 1.532.1-fixed archive artifact gzip lts-candidate regression zip |
Labels | 1.532.1-fixed archive artifact gzip lts-candidate regression zip | 1.532.1-fixed archive artifact gzip regression zip |
Link | This issue is related to JENKINS-26700 [ JENKINS-26700 ] |
Workflow | JNJira [ 151271 ] | JNJira + In-Review [ 193853 ] |
Description |
The zip generated by the link http://server/job/myJob/lastSuccessfulBuild/artifact/*zip*/archive.zip generates a zip file in which everything seems ok, but when you try to unzip the content with 7z for instance, it fails (compression method not supported). I can't see anything in the logs. BTW, the size of the file in the archive are set to 0. Could be a side effect in 7z. It works fine with 1.531. And finally, there was a modification of something about the compression in 1.532 related to issue |
The zip generated by the link http://server/job/myJob/lastSuccessfulBuild/artifact/*zip*/archive.zip generates a zip file in which everything seems ok, but when you try to unzip the content with 7z for instance, it fails (compression method not supported). I can't see anything in the logs. BTW, the size of the file in the archive are set to 0. Could be a side effect in 7z. It works fine with 1.531. And finally, there was a modification of something about the compression in 1.532 related to issue |
In fact there is a typo in hudson.model.DirectoryBrowserSupport line 348
should be
Util.copyStream(f.open(), >>>>>>>zos<<<<<<);
I have tested on my local and it works. the pull request is waiting !
https://github.com/jenkinsci/jenkins/pull/954