mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
Merge pull request #330 from sgoings/master
Enable individual platform/arch builds by watching for platform/arch
This commit is contained in:
commit
ba808a8589
@ -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 ->
|
||||||
|
Loading…
Reference in New Issue
Block a user