[GRADLE-3310] Gradle 2.5 RC 1 broke .tar.gz Created: 25/Jun/15 Updated: 10/Feb/17 Resolved: 10/Feb/17 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 2.5-rc-1 |
Fix Version/s: | None |
Type: | Bug | ||
Reporter: | Sterling Greene | Assignee: | Unassigned |
Resolution: | Won't Fix | Votes: | 1 |
Issue Links: |
|
Description |
https://discuss.gradle.org/t/gradle-2-5-rc-1-broke-tar-gz/10281 |
Comments |
Comment by Scott Palmer [ 03/May/16 ] |
This is still an issue in Gradle 2.13. |
Comment by Sterling Greene [ 03/May/16 ] |
Hey Scott, do you have a reproducible example? This should have been marked as fixed in 2.5-rc-2. Here's the minimum test we extracted from the forum post: https://github.com/gradle/gradle/blob/master/subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ArchiveIntegrationTest.groovy#L122 |
Comment by Scott Palmer [ 03/May/16 ] |
This is the gist of what is failing for me. It appears to make a difference if you do a clean build or not: dependencies { appDist group: 'example.group', name:'app', version: '1.0.0', classifier: 'dist-linux', ext: 'tgz', transitive: false } task copyToStagingArea(type: Copy) { into "${buildDir}/staging" from { configurations.appDist.findAll { it.name.endsWith(".tgz") }.collect { tarTree(it) } } } |
Comment by Sterling Greene [ 03/May/16 ] |
Thanks. Could the tgz's have read-only permissions on some files inside them? |
Comment by Scott Palmer [ 04/May/16 ] |
Absolutely. tar -tvf path_to_tgz_in_gradle_cache ... -rw-rw-r-- qoduser/qoduser 148557 2016-02-11 13:16 DITZ/app/openjfx-dialogs-1.0.2.jar -rwxr-xr-x qoduser/qoduser 10551 2016-02-11 13:16 DITZ/DITZ -r--r--r-- qoduser/qoduser 598358 2016-02-11 13:16 DITZ/libpackager.so ... drwxrwxr-x qoduser/qoduser 0 2016-02-11 13:16 DITZ/runtime/lib/amd64/server/ -r-xr-xr-x qoduser/qoduser 11052 2016-02-11 13:16 DITZ/runtime/lib/amd64/server/libjsig.so -r-xr-xr-x qoduser/qoduser 16918647 2016-02-11 13:16 DITZ/runtime/lib/amd64/server/libjvm.so -r--r--r-- qoduser/qoduser 1423 2016-02-11 13:16 DITZ/runtime/lib/amd64/server/Xusage.txt ... |
Comment by Scott Palmer [ 04/May/16 ] |
The tgz is a simple distribution image created with javapackager. |
Comment by Scott Palmer [ 04/May/16 ] |
The question now becomes... What is the right way to handle this? It is inefficient to delete the destination files always, only to copy over the exact same files that were already there. Only rarely will the files actually be different. I looked, but the Copy task doesn't seem to have an 'force overwrite' setting. |
Comment by Benjamin Muschko [ 15/Nov/16 ] |
As announced on the Gradle blog we are planning to completely migrate issues from JIRA to GitHub. We intend to prioritize issues that are actionable and impactful while working more closely with the community. Many of our JIRA issues are inactionable or irrelevant. We would like to request your help to ensure we can appropriately prioritize JIRA issues you’ve contributed to. Please confirm that you still advocate for your JIRA issue before December 10th, 2016 by:
We look forward to collaborating with you more closely on GitHub. Thank you for your contribution to Gradle! |
Comment by Benjamin Muschko [ 10/Feb/17 ] |
Thanks again for reporting this issue. We haven't heard back from you after our inquiry from November 15th. We are closing this issue now. Please create an issue on GitHub if you still feel passionate about getting it resolved. |