Add jenkinsfile for pipeline build and dockerfile for build
Signed-off-by: brian <brian@brutex.de>master
parent
1ee6b7a231
commit
941275df3a
|
@ -388,7 +388,7 @@ chipList.each { thisChip ->
|
|||
//}
|
||||
}
|
||||
|
||||
// Generates jnijavacpp.cpp and jniNativeLibrary.cpp, compiles and links it
|
||||
// Create Jar with classifier
|
||||
tasks.getByName("${thisChip}SupportJar") { Jar thisTask ->
|
||||
dependsOn "javacpp${thisChip.capitalize()}SupportBuildCompiler"
|
||||
dependsOn "javacpp${thisChip.capitalize()}SupportBuildCommand"
|
||||
|
@ -405,7 +405,7 @@ chipList.each { thisChip ->
|
|||
}
|
||||
return exclude
|
||||
}
|
||||
into "${javacppPlatform}/" //we need it in a platform, that javacpp Loader understands
|
||||
into "${javacppPlatform}/" //path within jar, we need it in a platform, that javacpp Loader understands
|
||||
}
|
||||
from(sourceSets.getByName("${thisChip}Support").getOutput()) {
|
||||
|
||||
|
@ -466,22 +466,24 @@ javadoc {
|
|||
|
||||
|
||||
if(! osdetector.os.startsWith("windows")) {
|
||||
tasks.getByName("publish") {
|
||||
enabled = true
|
||||
}
|
||||
//tasks.getByName("publish") {
|
||||
// enabled = false
|
||||
// }
|
||||
tasks.getByName("generatePomFileForMavenJavaPublication") {
|
||||
enabled = true
|
||||
}
|
||||
tasks.getByName("publishMavenJavaPublicationToLocalRemoteRepository") {
|
||||
enabled = true
|
||||
}
|
||||
chipList.each {thisChip ->
|
||||
chipList.each { thisChip ->
|
||||
artifacts {
|
||||
archives tasks.getByName("${thisChip}SupportJar")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
chipList.each { thisChip ->
|
||||
|
||||
chipList.each { thisChip ->
|
||||
publishing {
|
||||
publications {
|
||||
mavenJava(MavenPublication) {
|
||||
|
@ -490,10 +492,10 @@ if(! osdetector.os.startsWith("windows")) {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
if( osdetector.os.startsWith("windows")) {
|
||||
|
||||
FileCollection collection = layout.files { file("build/libs/").listFiles() }
|
||||
|
|
Loading…
Reference in New Issue