Browse Source

Merge pull request #15027 from nik9000/skip_package_integ

Disable rpm and deb integ tests
Nik Everett 10 years ago
parent
commit
c46961839b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      distribution/build.gradle

+ 3 - 1
distribution/build.gradle

@@ -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) {