Merge pull request #15027 from nik9000/skip_package_integ
Disable rpm and deb integ tests
This commit is contained in:
commit
c46961839b
|
@ -143,7 +143,9 @@ configure(subprojects.findAll { it.name == 'zip' || it.name == 'tar' }) {
|
||||||
* MavenFilteringHack or any other copy-style action.
|
* MavenFilteringHack or any other copy-style action.
|
||||||
*/
|
*/
|
||||||
configure(subprojects.findAll { it.name == 'deb' || it.name == 'rpm' }) {
|
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')
|
File packagingFiles = new File(buildDir, 'packaging')
|
||||||
project.ext.packagingFiles = packagingFiles
|
project.ext.packagingFiles = packagingFiles
|
||||||
task processPackagingFiles(type: Copy) {
|
task processPackagingFiles(type: Copy) {
|
||||||
|
|
Loading…
Reference in New Issue