Merge pull request #15027 from nik9000/skip_package_integ

Disable rpm and deb integ tests
This commit is contained in:
Nik Everett 2015-11-25 13:11:49 -05:00
commit c46961839b
1 changed files with 3 additions and 1 deletions

View File

@ -143,7 +143,9 @@ configure(subprojects.findAll { it.name == 'zip' || it.name == 'tar' }) {
* MavenFilteringHack or any other copy-style action.
*/
configure(subprojects.findAll { it.name == 'deb' || it.name == 'rpm' }) {
integTest.enabled = Os.isFamily(Os.FAMILY_WINDOWS) == false
// Currently disabled these because they are broken.
// integTest.enabled = Os.isFamily(Os.FAMILY_WINDOWS) == false
integTest.enabled = false
File packagingFiles = new File(buildDir, 'packaging')
project.ext.packagingFiles = packagingFiles
task processPackagingFiles(type: Copy) {