Merge pull request #330 from sgoings/master

Enable individual platform/arch builds by watching for platform/arch
This commit is contained in:
Joshua Warner 2014-08-20 18:27:06 -06:00
commit ba808a8589

View File

@ -15,6 +15,12 @@ apply plugin: 'artifactory-publish'
model { model {
platforms { platforms {
if(project.hasProperty("platform") && project.hasProperty("arch")) {
create("${platform}-${arch}") {
operatingSystem "${platform}"
architecture "${arch}"
}
} else {
create("linux-x86_64") { create("linux-x86_64") {
operatingSystem "linux" operatingSystem "linux"
architecture "x86_64" architecture "x86_64"
@ -35,6 +41,7 @@ model {
architecture "i386" architecture "i386"
} }
} }
}
tasks { tasks {
platforms.each { platform -> platforms.each { platform ->